Skip to content

Instantly share code, notes, and snippets.

@captbrogers
Created October 22, 2012 21:11
Show Gist options
  • Save captbrogers/3934358 to your computer and use it in GitHub Desktop.
Save captbrogers/3934358 to your computer and use it in GitHub Desktop.
My user specific settings for Sublime Text 2
// Settings in here override those in "Default/Preferences.sublime-settings", and
// are overridden in turn by file type specific settings.
{
// must have Droid font family installed
"font_face": "Droid Sans Mono",
// always use spaces, will provide better readability if opening in another IDE
// e.g. one "tab" may be 8 spaces in another IDE, but only 4 in Sublime
"translate_tabs_to_spaces": true,
// now set those spaces per tab
"tab_size": 4,
// self-explanitory
"shift_tab_unindent": true,
"caret_style": "phase",
// things looked too squished
"line_padding_bottom": 4,
// usually causes me problems
"trim_trailing_white_space_on_save": true,
// helps me with readability on the file tree
"bold_folder_labels": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment