Skip to content

Instantly share code, notes, and snippets.

@sidd
Created November 24, 2014 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sidd/f5e1cfeb19537f33d4db to your computer and use it in GitHub Desktop.
Save sidd/f5e1cfeb19537f33d4db to your computer and use it in GitHub Desktop.
Sublime Text 3 config (minimal)
{
"atomic_save": false, // buggy feature, disabled for now
"caret_style": "solid", // personal preference
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", // personal preference
"font_options": ["bold"], // I bold fonts on non-Mac systems
"font_size": 12, // personal preference; adjust this depending on screen size / etc.
"highlight_modified_tabs": true, // critical; highlights unsaved tabs, as opposed to replacing the X with a bullet
"ignored_packages": // enabling Vim bindings
[
],
"line_padding_bottom": 4, // I like spacing between lines
"line_padding_top": 4, // continued
"tab_size": 2, // personal preferences
"translate_tabs_to_spaces": true, // obliterate tabs
"use_simple_full_screen": false, // Mac
"vintage_start_in_command_mode": true, // when opening a file, you won't be tossed into Insert mode
"word_wrap": true // personal preference
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment