Skip to content

Instantly share code, notes, and snippets.

@felixangell
Created May 25, 2015 14:13
Show Gist options
  • Save felixangell/9b0f9fc68d4d1336c794 to your computer and use it in GitHub Desktop.
Save felixangell/9b0f9fc68d4d1336c794 to your computer and use it in GitHub Desktop.
Felix's Sublime Preferences, this is just in case I reformat or whatever.
[
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+left"], "command": "move", "args": {"by": "subwords", "forward": false} },
{ "keys": ["super+right"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
{ "keys": ["super+shift+left"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["super+shift+right"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} },
{ "keys": ["super+alt+left"], "command": "move", "args": {"by": "subwords", "forward": false} },
{ "keys": ["super+alt+right"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
{ "keys": ["super+alt+shift+left"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["super+alt+shift+right"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} },
{ "keys": ["super+up"], "command": "scroll_lines", "args": {"amount": 1.0} },
{ "keys": ["super+down"], "command": "scroll_lines", "args": {"amount": -1.0} },
{ "keys": ["super+alt+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["super+alt+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["super+backspace"], "command": "delete_word", "args": { "forward": false, "sub_words": true } },
{ "keys": ["super+delete"], "command": "delete_word", "args": { "forward": true, "sub_words": true } },
]
{
"color_scheme": "Packages/Colorsublime - Themes/Solarized-ocean.tmTheme",
"dictionary": "Packages/Language - English/en_GB.dic",
"file_exclude_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"*.aly.test",
"*.DS_Store",
"*.o"
],
"folder_exclude_patterns":
[
"*.dSYM",
".git",
".hg",
".svn"
],
"font_face": "inconsolata",
"font_size": 16,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"scroll_past_end": true,
"theme": "Spacegray.sublime-theme",
"translate_tabs_to_spaces": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment