Skip to content

Instantly share code, notes, and snippets.

@jeremyolliver
Last active December 23, 2015 03:39
Show Gist options
  • Save jeremyolliver/6575171 to your computer and use it in GitHub Desktop.
Save jeremyolliver/6575171 to your computer and use it in GitHub Desktop.
sublime user preferences
{
// Useful Visual
"caret_style": "phase",
"highlight_line": true,
"highlight_modified_tabs": true,
// File handling
"default_line_ending": "unix",
"fallback_encoding": "UTF-8",
// Spacing handling
"detect_indentation": false,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true, // This one is more preference, but spaces all over the show in a file just shows less care
"ensure_newline_at_eof_on_save": true, // preference also
// Theme/Styling/Other
"font_size": 14,
"bold_folder_labels": true,
"color_scheme": "Packages/Color Scheme - Default/Sunburst.tmTheme",
"theme": "Soda Dark.sublime-theme",
"dictionary": "Packages/Language - English/en_GB.dic",
"ignored_packages":
[
"Vintage"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment