Skip to content

Instantly share code, notes, and snippets.

@rodvlopes
Created April 30, 2019 01:37
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 rodvlopes/f65af62cff2b92ae3ae64ce27ac8449a to your computer and use it in GitHub Desktop.
Save rodvlopes/f65af62cff2b92ae3ae64ce27ac8449a to your computer and use it in GitHub Desktop.
My sublime text settings and key biddings
//Preferences.sublime.settings
{
"folder_exclude_patterns":
[
"node_modules",
".svn",
".git",
".hg",
"CVS"
],
"font_size": 15,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"show_minimap": false
}
//OSX sublime-keymap
[
{ "keys": ["alt+shift+d"], "command": "find_under_expand" },
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 4.0} },
{ "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -4.0} },
{ "keys": ["f3"], "command": "find_under" },
{ "keys": ["shift+f3"], "command": "find_under_prev" },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+f9"], "command": "toggle_side_bar" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment