I like to change around my default color scheme in my text editors. I love Sublime and use it for a lot of .txt documents. I don't like the default white-on-gray scheme that is uses though.
I saw other answers about how to change a specific background color based on the file type, but I haven't come across anything about making a specific file type use the default setting.
I would like any text file I open/create in sublime to use the same color scheme as what I currently have selected from the preferences menu.

"color_scheme": "Packages/MyScheme/MyScheme.tmTheme"in your user preferences, all newly-opened files should have the new scheme. - MattDMo{ "color_scheme": "Packages/Color Scheme - Default/Cobalt.tmTheme", "font_size": 10, "ignored_packages": [ "Vintage" ] }When I create a new file I get the desired scheme, but when I save the file as .txt (or open a .txt file) I get a different color scheme that I don't want to use. - BrianHVB