Created
April 30, 2019 01:37
-
-
Save rodvlopes/f65af62cff2b92ae3ae64ce27ac8449a to your computer and use it in GitHub Desktop.
My sublime text settings and key biddings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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