Created
November 24, 2011 08:51
-
-
Save Viper007Bond/1390918 to your computer and use it in GitHub Desktop.
My Sublime Text 2 Configuration Files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File Settings - User | |
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"font_face": "Consolas", // Windows, you'll likely want default or something else | |
"font_size": 10, | |
//"spell_check": true, | |
"draw_white_space": "all", // I like my tabs/spaces to show | |
//"highlight_line": true, | |
"fallback_encoding": "UTF-8", | |
"foo": "bar" // Here to avoid having to deal with commas above | |
} | |
// Global Settings - User | |
{ | |
"theme": "Soda Dark.sublime-theme", // Custom, see https://github.com/buymeasoda/soda-theme | |
"highlight_modified_tabs": true, | |
// I don't want Sublime to reopen to where it was when I closed it | |
"hot_exit": false, | |
"remember_open_files": false, | |
"scroll_speed": 0, // I don't like smooth scrolling | |
"file_exclude_patterns": | |
[ | |
".*", | |
"*.tmp", | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.png", | |
"*.mo", | |
"*.ttf", | |
"*.jpg", | |
"*.gif", | |
"*.swf", | |
"*.gz", | |
"*.m4v" | |
], | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
".*", | |
"production", | |
"html-purifier", | |
"themes", | |
"languages" | |
], | |
"foo": "bar" // Here to avoid having to deal with commas above | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment