Skip to content

Instantly share code, notes, and snippets.

@orez-
Last active August 29, 2015 14:04
Show Gist options
  • Save orez-/2cd72f72e00cc931abde to your computer and use it in GitHub Desktop.
Save orez-/2cd72f72e00cc931abde to your computer and use it in GitHub Desktop.
Sublime Settings
[
{ "keys": ["super+f"], "command": "show_panel", "args": {"panel": "find", "toggle": true} },
{ "keys": ["shift+tab"], "command": "unindent"},
{ "keys": ["super+g"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["super+h"], "command": "show_panel", "args": {"panel": "replace"} },
{ "keys": ["super+shift+o"], "command": "prompt_add_folder"},
{ "keys": ["super+shift+r"], "command": "toggle_setting", "args": {"setting": "word_wrap"}},
{ "keys": ["tab"], "command": "indent", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
},
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["ctrl+home"], "command": "move_to", "args": {"to": "bof", "extend": false} },
{ "keys": ["ctrl+end"], "command": "move_to", "args": {"to": "eof", "extend": false} },
{ "keys": ["ctrl+shift+home"], "command": "move_to", "args": {"to": "bof", "extend": true} },
{ "keys": ["ctrl+shift+end"], "command": "move_to", "args": {"to": "eof", "extend": true} },
{ "keys": ["super+alt+u"], "command": "upper_case" },
{ "keys": ["super+alt+l"], "command": "lower_case" },
{ "keys": ["ctrl+shift+r"], "command": "reindent", "args": { "single_line": false } },
{ "keys": ["ctrl+i"], "command": "isort" }
]
{
"auto_complete_commit_on_tab": true,
"auto_match_enabled": false,
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"copy_with_empty_selection": false,
"detect_indentation": true,
"ensure_newline_at_eof_on_save": true,
"find_selected_text": true,
"font_size": 15.0,
"ignored_packages":
[
"Vintage"
],
"rulers":
[
72,
100
],
"scroll_past_end": true,
"shift_tab_unindent": true,
"show_full_path": true,
"theme": "Flatland Dark.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