Last active
December 24, 2015 13:58
-
-
Save samuelhorn/6808690 to your computer and use it in GitHub Desktop.
Sublime Text 2 - User settings
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
Show hidden characters
{ | |
// Make folders in sidebar bold | |
"bold_folder_labels": false, | |
// Nicer caret animation | |
"caret_style": "phase", | |
// Set colorscheme | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
// Set theme | |
"theme": "Spacegray.sublime-theme", | |
// Make folding arrows stay visible | |
"fade_fold_buttons": false, | |
// Set font face | |
"font_face": "Menlo", | |
// Set font options | |
"font_options": [ "subpixel_antialias" ], | |
// Set font size | |
"font_size": 14.0, | |
// Mark current line | |
"highlight_line": true, | |
// Show if a file is unsaved | |
"highlight_modified_tabs": true, | |
// Don´t use VI command mode | |
"ignored_packages": [ "Vintage" ], | |
// Set lines bottom padding | |
"line_padding_bottom": 2, | |
// Set lines top padding | |
"line_padding_top": 2, | |
// Set a ruler after 80 chars | |
"rulers": [ 80 ], | |
// Make it possible to scroll past last line | |
"scroll_past_end": true, | |
// Set the default tab size | |
"tab_size": 4, | |
// Make tabs spaces | |
"translate_tabs_to_spaces": true, | |
// Remove any trailing whitespace | |
"trim_trailing_white_space_on_save": true, | |
// Break code lines | |
"word_wrap": "true", | |
// Make code lines break at same position as the ruler | |
"wrap_width": 80, | |
// Saves your document when switching to browser window | |
"save_on_focus_lost": true, | |
// Don´t open a new file on Sublime load | |
"create_window_at_startup": false, | |
// Make css classes with "-"" double clickable | |
"word_separators": "./\\()\"':,.;<>~!@#$%^&*|+=[]{}~?", | |
// Make it play nice with version control | |
"ensure_newline_at_eof_on_save": true, | |
// Mark tabs & spaces | |
"draw_white_space": "all" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment