Skip to content

Instantly share code, notes, and snippets.

@rodrigore
Last active December 7, 2016 12:40
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 rodrigore/6eb911bfe8fc8e95224005c604843942 to your computer and use it in GitHub Desktop.
Save rodrigore/6eb911bfe8fc8e95224005c604843942 to your computer and use it in GitHub Desktop.

key repeat

defaults write com.sublimetext.3 ApplePressAndHoldEnabled -bool false

plugins

  • material theme
  • vintageous
  • editor config
  • phpcompanion
  • phpcs
@rodrigore
Copy link
Author

rodrigore commented Dec 2, 2016

[
{"keys": ["ctrl+["], "command": "press_key", "args": {"key": ""}, "context": [{"key": "vi_command_mode_aware"}]},
{"keys": ["ctrl+["], "command": "_enter_normal_mode", "args": {"mode": "mode_insert"}, "context": [{"key": "vi_insert_mode_aware"}]},
{ "keys": [",", "t"], "command": "next_view", "context": [{"key": "vi_command_mode_aware"}]},
{ "keys": [",", "a"], "command": "prev_view" , "context": [{"key": "vi_command_mode_aware"}]},
{ "keys": [",", "w"], "command": "save", "context": [{"key": "vi_command_mode_aware"}]},
{ "keys": [",", "n"], "command": "toggle_side_bar"},
{ "keys": [",", "d"], "command": "close" },
{ "keys": [",", "i"], "command": "find_use" },
{ "keys": ["h"], "command": "move", "args": {"by": "characters", "forward": false}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] },
{ "keys": ["j"], "command": "move", "args": {"by": "lines", "forward": true}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] },
{ "keys": ["k"], "command": "move", "args": {"by": "lines", "forward": false}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] },
{ "keys": ["l"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] },
{ "keys": ["o"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] }
]

@rodrigore
Copy link
Author

control + r => redo

@rodrigore
Copy link
Author

{
"always_show_minimap_viewport": true,
"auto_complete": false,
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"font_size": 17,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_numbers": false,
"line_padding_bottom": 3,
"line_padding_top": 3,
"margin": 0,
"overlay_scroll_bars": "enabled",
"remember_full_screen": true,
"theme": "Material-Theme.sublime-theme",
"use_simple_full_screen": true,
"use_sort_length": true,
"vintageous_enable_cmdline_mode": true,
"vintageous_hlsearch": true,
"vintageous_use_ctrl_keys": true,
"origami_auto_close_empty_panes": true,
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment