Skip to content

Instantly share code, notes, and snippets.

@samuelhorn
Last active December 24, 2015 13:58
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelhorn/6808690 to your computer and use it in GitHub Desktop.
Save samuelhorn/6808690 to your computer and use it in GitHub Desktop.
Sublime Text 2 - User settings
{
// 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