Skip to content

Instantly share code, notes, and snippets.

@krisimmig
Last active April 9, 2016 10:43
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 krisimmig/c7016658e4a687c49023 to your computer and use it in GitHub Desktop.
Save krisimmig/c7016658e4a687c49023 to your computer and use it in GitHub Desktop.
general:
=======
keymap:
-------
{"keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"},
{"keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"},
{"keys": ["alt+up"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false}},
{"keys": ["alt+down"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true}},
{"keys": ["shift+alt+up"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false, "extend": true}},
{"keys": ["shift+alt+down"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true, "extend": true}},
{"keys": ["super+right"], "command": "move_to", "args": {"to": "hardeol", "extend": false}},
{"keys": ["super+left"], "command": "move_to", "args": {"to": "hardbol", "extend": false}},
{"keys": ["super+shift+right"], "command": "move_to", "args": {"to": "hardeol", "extend": true}},
{"keys": ["super+shift+left"], "command": "move_to", "args": {"to": "hardbol", "extend": true}},
{"keys": ["ctrl+shift+f"], "command": "reindent"},
{"keys": ["super+ctrl+a"], "command": "alignment"},
settings:
---------
"always_show_minimap_viewport": true,
"always_show_path_on_tabs": true,
"bold_folder_labels": true,
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme",
"draw_white_space": "all",
"find_selected_text": true,
"folder_exclude_patterns":
[
".sass-cache",
".git"
],
"font_options": "subpixel_antialias",
"font_size": 17,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"overlay_scroll_bars": "enabled",
"rulers":
[
80
],
"scroll_past_end": true,
"show_full_path": true,
"tab_completion": false,
"tab_size": 2,
"theme": "Spacegray.sublime-theme",
"translate_tabs_to_spaces": true,
"vintage_start_in_command_mode": true,
"word_wrap": false
plugins:
========
alignment:
----------
{
// The characters to align along with "alignment_chars"
// For instance if the = is to be aligned, there are a number of
// symbols that can be combined with the = to make an operator, and all
// of those must be kept next to the = for the operator to be parsed
"alignment_prefix_chars": [
"+", "-", "&", "|", "<", ">", "!", "~", "%", "/", "*", ".", ":"
],
"alignment_chars": [
"=", ":"
],
"alignment_space_chars": [
"=", ":"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment