Created
August 11, 2012 01:39
-
-
Save joshvermaire/3319827 to your computer and use it in GitHub Desktop.
Current Sublime Text 2 User Preferences
This file contains hidden or 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
{ | |
// Wide caret_style...wish it blinked as well | |
"caret_style": "wide", | |
// Custom Theme | |
"color_scheme": "Packages/User/Solarized (Dark).tmTheme", | |
// Ensure new line of end of file on save | |
"ensure_newline_at_eof_on_save": true, | |
// Amazing font http://levien.com/type/myfonts/inconsolata.html | |
"font_face": "Inconsolata", | |
// Inconsolata is small in general | |
"font_size": 15.0, | |
// Highligh tabs to show modified files | |
"highlight_modified_tabs": true, | |
// Shift tab unindents the line | |
"shift_tab_unindent": true, | |
// Set default tab size to 2 | |
"tab_size": 2, | |
// Use soft tabs (spaces) | |
"translate_tabs_to_spaces": true, | |
// Exclude node_modules and deprecated folders from search, sidebar, and goto anything | |
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "deprecated", "node_modules"], | |
// Exclude sublime project files and files ending in .orig from search, sidebar, and goto anything | |
"file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "*.orig", "*.sublime-project", "*.sublime-workspace"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment