Created
July 17, 2013 14:04
-
-
Save chriswessels/6020819 to your computer and use it in GitHub Desktop.
My Sublime Text 3 User Preferences file.
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
{ | |
// Makes tabs with modified files more visible | |
"highlight_modified_tabs": true, | |
// Set to true to ensure the last line of the file ends in a newline | |
// character when saving | |
"ensure_newline_at_eof_on_save": true, | |
// Set to true to removing trailing white space on save | |
"trim_trailing_white_space_on_save": true, | |
// The number of spaces a tab is considered equal to | |
"tab_size": 2, | |
// Set to true to insert spaces when tab is pressed | |
"translate_tabs_to_spaces": true, | |
// 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, | |
// Set to false to disable detection of tabs vs. spaces on load | |
"detect_indentation": false, | |
// Calculates indentation automatically when pressing enter | |
"auto_indent": true, | |
// Makes auto indent a little smarter, e.g., by indenting the next line | |
// after an if statement in C. Requires auto_indent to be enabled. | |
"smart_indent": true, | |
// Adds whitespace up to the first open bracket when indenting. Requires | |
// auto_indent to be enabled. | |
"indent_to_bracket": false, | |
// Trims white space added by auto_indent when moving the caret off the | |
// line. | |
"trim_automatic_white_space": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment