Created
August 12, 2013 07:56
-
-
Save xarimanx/6208946 to your computer and use it in GitHub Desktop.
sublime settings
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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Sunburst.tmTheme", | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"use_simple_full_screen": false, | |
// calculates indentation automatically when pressing enter | |
"auto_indent": true, | |
// useful to block endings and closing tags | |
"draw_indent_guides": true, | |
// letting it breaaaathe! | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
// setting for the 'alignment' package | |
"mid_line_tabs": false, | |
// if translate_tabs_to_spaces is true, use_tab_stops will make tab and | |
// backspace insert/delete up to the next tabstop | |
"use_tab_stops": true, | |
// tired of trying to decipher whether something's a folder or a file? | |
"bold_folder_labels": true, | |
"trim_automatic_white_space": true, | |
"trim_trailing_white_space_on_save": true, | |
"sublimelinter": "load-save", | |
"save_on_focus_lost": true, | |
"ensure_newline_at_eof_on_save": true, | |
"folder_exclude_patterns": | |
[ | |
"log", | |
".git", | |
".svn", | |
".idea", | |
".hg", | |
"CVS", | |
".sass-cache", | |
".bundle", | |
"tmp", | |
".gitkeep" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment