I've been looking all over for a way to do this and I haven't had much luck. I've recently switched from Vim to Sublime Text 2 and I'm trying to set a default filetype for a certain extension. I want to have *.cfg files default to having Ini syntax highlighting but I can't seem to figure out how I could create this custom setting. I apologize if this is not the right site to post this question on, and I appreciate any help I receive.

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

Go to a Packages/User, create (or edit) a .sublime-settings file named after the Syntax where you want to add the extensions, Ini.sublime-settings in your case, then write there something like this:

{
    "extensions":
    [
        "cfg"
    ]
}

And then restart Sublime Text

link|improve this answer
awesome, this was just what i needed, thanks! – gthmb Feb 2 at 17:49
I find it annoying and debilitating that I cannot set a filename as well. – Elland Feb 23 at 9:02
feedback

In the current version of Sublime Text 2 (Build: 2139), you can set the syntax for all files of a certain file extension using an option in the menu bar. Open a file with the extension you want to set a default for and navigate through the following menus: View -> Syntax -> Open all with current extension as... ->[your syntax choice].

link|improve this answer
Indeed this works fine! – Junior Mayhé May 16 at 13:08
feedback

In ST2 there's a package you can install called Default FileType which does just that. More info on https://github.com/spadgos/sublime-DefaultFileType.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.