Created
August 10, 2012 12:15
-
-
Save jimmyhillis/3313837 to your computer and use it in GitHub Desktop.
My stock and useful set of Sublime Text 2 Preferences
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
Show hidden characters
{ | |
// Styles, themes, and typography | |
"bold_folder_labels": true, | |
"detect_indentation": false, | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Source Code Pro ExtraLight", | |
"font_size": 13.0, | |
"highlight_modified_tabs": true, | |
// File management | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
"*.pyc" | |
], | |
"folder_exclude_patterns": | |
[ | |
"products", | |
"var", | |
".hg", | |
"parts", | |
"bin", | |
"develop-eggs", | |
".git" | |
], | |
"hot_exit": false, | |
"remember_open_files": false, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
// Code formatting | |
"indent_to_bracket": true, | |
"rulers": | |
[ | |
79, | |
119 | |
], | |
// Tabs | |
"tab_size": 4, | |
"tab_width": 4, | |
"theme": "Soda Dark.sublime-theme", | |
// Space and automagic tools | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"word_wrap": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment