SublimeText / AFileIcon

Sublime Text File-Specific Icons for Improved Visual Grepping

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement terraform icons (for .tf and .tfvars files)

opened this issue · comments

Could you please add the terraform icon for .tf and .tfvars files. There is an icon for those in the atom file icons.

terraform icon

Thanks for the great work!

Additional info: https://github.com/tmichel/sublime-terraform

Based on the Terraform.tmPreferences on my computer they should be named file_type_terraform:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>scope</key>
    <string>source.terraform</string>
    <key>settings</key>
    <dict>
        <key>icon</key>
        <string>file_type_terraform</string>
    </dict>
</dict>
</plist>

❤️