Skip to content

Instantly share code, notes, and snippets.

@jessegilbride
Last active November 2, 2016 15:49
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 jessegilbride/701c5536cac167c118c1 to your computer and use it in GitHub Desktop.
Save jessegilbride/701c5536cac167c118c1 to your computer and use it in GitHub Desktop.
My Sublime Text (2) user preferences
[
// Causes tabs to switch like a browser...
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
// Returns home/end keys to their original usage...
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
// Related to above, allows for highlighting with shift+home/end...
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } }
]
{
"bold_folder_labels": true,
"caret_style": "phase",
"close_windows_when_empty": false,
"color_scheme": "Packages/Darkula Color Scheme/darkula.tmTheme",
"fade_fold_buttons": false,
"font_size": 12.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_active"
],
"match_brackets_angle": false,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,
"scroll_past_end": true,
"tab_size": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment