Skip to content

Instantly share code, notes, and snippets.

@kerbyfc
Last active August 29, 2015 14:15
Show Gist options
  • Save kerbyfc/c6ee3c58f8bb1c2a119d to your computer and use it in GitHub Desktop.
Save kerbyfc/c6ee3c58f8bb1c2a119d to your computer and use it in GitHub Desktop.
Sublime Text 3 settings
[
{
"keys": [
"super+t"
],
"command": "tab_filter",
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
"H"
],
"command": "join_lines",
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
"L"
],
"command": "insert_snippet",
"args": {
"contents": "$0\n"
},
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
"K"
],
"command": "next_view_in_pane",
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
"J"
],
"command": "prev_view_in_pane",
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
"end"
],
"command": "find_next_conflict"
},
{
"keys": [
"O"
],
"command": "keep",
"args": {
"keep": "ours"
},
"context": [
{
"key": "selection_empty",
"operator": "equal",
"operand": false
}
]
},
{
"keys": [
"T"
],
"command": "keep",
"args": {
"keep": "theirs"
},
"context": [
{
"key": "selection_empty",
"operator": "equal",
"operand": false,
}
]
},
{
"keys": [
"ctrl+["
],
"command": "fold"
},
{
"keys": [
"ctrl+]"
],
"command": "unfold"
},
{
"keys": [
"super+shift+a"
],
"command": "align_tab",
"args" : {
"live_preview" : true
},
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
";", "<character>"
],
"command": "easy_motion",
"args": {
"select_text": false
},
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
">"
],
"command": "indent",
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
"<"
],
"command": "unindent",
"context": [
{
"key": "setting.command_mode"
}
]
},
{
"keys": [
"super+l"
],
"command": "set_motion",
"args": {
"motion": "vi_move_to_hard_eol",
"motion_args": {
"repeat": 1,
"extend": true
},
"inclusive": true,
"clip_to_line": true
},
},
{
"keys": [
"super+h"
],
"command": "set_motion",
"args": {
"motion": "vi_move_to_first_non_white_space_character",
"motion_args": {
"extend": true
},
"clip_to_line": true
},
},
{
"keys": [
"super+;", "<character>"
],
"command": "easy_motion",
"args": {
"select_text": false
}
},
{
"keys": [
"super+;", "enter"
],
"command": "easy_motion",
"args": {
"select_text": false,
"character": "enter"
}
},
{
"keys": [
"super+shift+;", "<character>"
],
"command": "easy_motion",
"args" : {
"select_text": true
}
},
{
"keys": [
"super+shift+;", "enter"
],
"command": "easy_motion",
"args": {
"select_text": true,
"character": "enter"
}
},
{
"keys": [
"super+w"
],
"command": "close"
},
{
"keys": [
"super+shift+n"
],
"command": "toggle_side_bar"
},
{
"keys": [
"super+k"
],
"command": "move",
"args":
{
"by": "stops",
"empty_line": true,
"forward": false
}
},
{
"keys": [
"super+k"
],
"command": "move",
"args":
{
"by": "stops",
"empty_line": true,
"forward": false,
"extend": true
},
"context": [
{
"key": "selection_empty",
"operator": "equal",
"operand": false,
"match_all": false
}
]
},
{
"keys": [
"super+j"
],
"command": "move",
"args": {
"by": "stops",
"empty_line": true,
"forward": true
},
},
{
"keys": [
"super+j"
],
"command": "move",
"args": {
"by": "stops",
"empty_line": true,
"forward": true,
"extend": true
},
"context": [
{
"key": "selection_empty",
"operator": "equal",
"operand": false,
"match_all": false
}
]
},
{
"keys": [
"ctrl+f"
],
"command": "show_overlay",
"args": {
"overlay": "goto",
"show_files": true
}
},
{
"keys": [
"ctrl+b"
],
"command": "switch_tabs"
},
{
"keys": [
"ctrl+k"
],
"command": "travel_to_pane",
"args": {
"direction": "up"
},
"context": [
{
"key": "setting.command_mode"
},
]
},
{
"keys": [
"ctrl+l"
],
"command": "travel_to_pane",
"args": {
"direction": "right"
},
"context": [
{
"key": "setting.command_mode"
},
]
},
{
"keys": [
"ctrl+j"
],
"command": "travel_to_pane",
"args": {
"direction": "down"
},
"context": [
{
"key": "setting.command_mode"
},
]
},
{
"keys": [
"ctrl+h"
],
"command": "travel_to_pane",
"args": {
"direction": "left"
},
"context": [
{
"key": "setting.command_mode"
},
]
},
{
"keys": [
"super+shift+k"
],
"command": "carry_file_to_pane",
"args": {
"direction": "up"
},
"context": [
{
"key": "setting.command_mode"
},
]
},
{
"keys": [
"super+shift+l"
],
"command": "carry_file_to_pane",
"args": {
"direction": "right"
},
"context": [
{
"key": "setting.command_mode"
},
]
},
{
"keys": [
"super+shift+j"
],
"command": "carry_file_to_pane",
"args": {
"direction": "down"
},
"context": [
{
"key": "setting.command_mode"
},
]
},
{
"keys": [
"super+shift+h"
],
"command": "carry_file_to_pane",
"args": {
"direction": "left"
},
"context": [
{
"key": "setting.command_mode"
},
]
},
{
"keys": [
"ctrl+\\"
],
"command": "create_pane",
"args": {
"direction": "right"
}
},
{
"keys": [
"ctrl+-"
],
"command": "create_pane",
"args": {
"direction": "down"
}
},
{
"keys": [
"ctrl+q"
],
"command": "destroy_pane",
"args": {
"direction": "self"
}
},
{
"keys": [
"super+ctrl+-"
],
"command": "resize_pane",
"args": {
"orientation": "rows"
}
},
{
"keys": [
"super+ctrl+\\"
],
"command": "resize_pane",
"args": {
"orientation": "cols"
}
},
]
{
"always_show_minimap_viewport": true,
"caret_extra_width": 1,
"caret_style": "phase",
"color_scheme": "Packages/Theme - Cyanide/Twilightcyanide - Contrasted.tmTheme",
"contrasted_sidebar": true,
"contrasted_tabs": true,
"drag_text": false,
"draw_indent_guides": true,
"draw_minimap_border": true,
"draw_white_space": "selection",
"enable_tab_scrolling": true,
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
"*.theme",
"tags",
"*-fat.jar",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace"
],
"fill_conflict_area": true,
"font_face": "Menlo",
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"icon_file_type_enable": true,
"ignored_packages":
[
"Markdown"
],
"inactive_panes_dim_strength": 0.08,
"indent_guide_options":
[
"draw_normal"
],
"jsdocs_align_tags": "shallow",
"line_numbers": false,
"line_padding_bottom": 1,
"line_padding_top": 1,
"open_tab_limit": 5,
"overlay_scroll_bars": "enabled",
"show_only_filename": false,
"spacefunk_folder_icons": true,
"tab_size": 2,
"theme": "Cyanide.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
"vintage_start_in_command_mode": true,
"wide_caret": true,
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment