Created
January 24, 2013 21:00
-
-
Save justinrainbow/4627684 to your computer and use it in GitHub Desktop.
my sublime text 2 config
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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
"dump.rdb" | |
], | |
"font_size": 12.0, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage", | |
"SymfonyCommander", | |
"SublimeTagmatcher", | |
"SublimeBrackets" | |
], | |
"remember_open_files": true, | |
"stupid_indent": | |
[ | |
{ | |
"patterns": | |
[ | |
"Gemfile", | |
"*.rb", | |
"*.erb", | |
"*.scss", | |
"*.coffee" | |
], | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true | |
}, | |
{ | |
"patterns": | |
[ | |
"*.html", | |
"*.css" | |
], | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true | |
}, | |
{ | |
"patterns": | |
[ | |
"*.php" | |
], | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true | |
}, | |
{ | |
"patterns": | |
[ | |
"*.md", | |
"*.markdown" | |
], | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true | |
} | |
], | |
"tab_size": 4, | |
"theme": "Soda Dark.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment