Skip to content

Instantly share code, notes, and snippets.

@CrCs2O4
Last active September 19, 2018 10:24
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 CrCs2O4/bbcc97023955d72a100104def955172a to your computer and use it in GitHub Desktop.
Save CrCs2O4/bbcc97023955d72a100104def955172a to your computer and use it in GitHub Desktop.
ST3
[
{ "keys": ["super+shift+'"], "command": "prompt_add_folder" },
{ "keys": ["super+shift+c"], "command": "goto_window" },
{ "keys": ["super+ctrl+s"], "command": "toggle_side_bar" },
{ "keys": ["super+ctrl+r"], "command": "reveal_in_side_bar" },
// { "keys": ["super+shift+right"], "command": "run_macro_file", "args": {"file": "res://Packages/User/split_and_move_to_pane.sublime-macro"}},
{ "keys": ["super+shift+right"], "command": "chain", "args": {"commands": [
[ "split_pane", {"commands": ["v"]} ],
[ "move_to_pane", {"direction": "right"} ]
]}
},
{ "keys": ["super+shift+down"], "command": "chain", "args": {"commands": [
[ "split_pane", {"commands": ["h"]} ],
[ "move_to_pane", {"direction": "down"} ]
]}
},
// { "keys": ["super+shift+right"], "command": "split_pane", "args": {"commands": ["v"]} },
// { "keys": ["super+shift+down"], "command": "split_pane", "args": {"commands": ["h"]} },
{ "keys": ["super+ctrl+z"], "command": "redo" },
{ "keys": ["super+shift+z"], "command": "undo_layout_pane" },
{ "keys": ["super+shift+x"], "command": "redo_layout_pane" },
{ "keys": ["super+shift+w"], "command": "destroy_current_pane" },
{ "keys": ["super+left"], "command": "move_to_pane", "args": {"direction": "left"} },
{ "keys": ["super+right"], "command": "move_to_pane", "args": {"direction": "right"} },
{ "keys": ["super+up"], "command": "move_to_pane", "args": {"direction": "up"} },
{ "keys": ["super+down"], "command": "move_to_pane", "args": {"direction": "down"} },
{ "keys": ["super+alt+right"], "command": "carry_file_to_pane", "args": {"direction": "right"} },
{ "keys": ["super+alt+left"], "command": "carry_file_to_pane", "args": {"direction": "left"} },
{ "keys": ["super+alt+up"], "command": "carry_file_to_pane", "args": {"direction": "up"} },
{ "keys": ["super+alt+down"], "command": "carry_file_to_pane", "args": {"direction": "down"} },
{ "keys": ["alt+left"], "command": "resize_pane", "args": {"direction": "left", "step": 1} },
{ "keys": ["alt+right"], "command": "resize_pane", "args": {"direction": "right", "step": 1} },
{ "keys": ["alt+up"], "command": "resize_pane", "args": {"direction": "up", "step": 1} },
{ "keys": ["alt+down"], "command": "resize_pane", "args": {"direction": "down", "step": 1} },
]
# cat ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/Package\ Control.sublime-settings
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"A File Icon",
"Advanced CSV",
"Better CoffeeScript",
"Chain of Command",
"CTags",
"Cucumber",
"Diffy",
"Dockerfile Syntax Highlighting",
"eco",
"ERB Autocomplete",
"File Rename",
"GotoWindow",
"JSON Reindent",
"Layout",
"Material Theme",
"Material Theme - Appbar",
"MaxPane",
"nginx",
"Package Control",
"RAML Syntax Highlighter",
"RuboCop",
"Slime",
"SSH Config",
"Sublime Tutor",
"Sublimerge 3",
"SysLog",
"Terraform",
"Vue Syntax Highlight"
]
}
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"default_line_ending": "unix",
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "Cyrillic (Windows 1251)",
"find_selected_text": true,
"font": "Operator Mono",
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
"font_size": 16,
"ignored_packages":
[
"Material Theme - White Panels",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 3,
"line_padding_top": 3,
"material_theme_small_tab": true,
"material_theme_tabs_autowidth": true,
"material_theme_tabs_separator": true,
"material_theme_tree_headings": true,
"overlay_scroll_bars": "enabled",
"open_files_in_new_window": false,
"rulers":
[
80,
120
],
"sublime_enhanced_keybindings": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true,
"theme": "Material-Theme.sublime-theme"
// "update_check": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment