Last active
April 24, 2019 15:14
-
-
Save kykosic/a2aa10bf46d002ac32629dc82ca4278a to your computer and use it in GitHub Desktop.
This file contains 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
CONFIG - MAC | |
{ | |
"auto_complete": false, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme", | |
"font_size": 12, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
79 | |
], | |
"tab_completion": false, | |
"theme": "Material Monokai.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true | |
} | |
CONFIG - UBUNTU | |
{ | |
"auto_complete": false, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme", | |
"font_face": "DejaVu Sans Mono", | |
"font_size": 9, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
79 | |
], | |
"tab_completion": false, | |
"theme": "Material Monokai.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
} | |
KEYBINDINGS - MAC | |
[ | |
{"keys": ["super+b"], "command": "goto_definition" }, | |
{"keys": ["super+alt+left"], "command": "jump_back"}, | |
{"keys": ["super+alt+right"], "command": "jump_forward"} | |
] | |
KEYBINDINGS - UBUNTU | |
[ | |
{"keys": ["ctrl+b"], "command": "goto_definition" }, | |
{"keys": ["ctrl+shift+b"], "command": "jump_back"}, | |
{"keys": ["ctrl+alt+right"], "command": "jump_forward"}, | |
{"keys": ["ctrl+o"], "command": "prompt_open_folder"}, | |
{ "keys": ["alt+left"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["alt+right"], "command": "move_to", "args": {"to": "eol", "extend": false} }, | |
{ "keys": ["alt+shift+left"], "command": "move_to", "args": {"to": "bol", "extend": true} }, | |
{ "keys": ["alt+shift+right"], "command": "move_to", "args": {"to": "eol", "extend": true} }, | |
{ "keys": ["alt+up"], "command": "move_to", "args": {"to": "bof", "extend": false} }, | |
{ "keys": ["alt+down"], "command": "move_to", "args": {"to": "eof", "extend": false} }, | |
{ "keys": ["alt+shift+up"], "command": "move_to", "args": {"to": "bof", "extend": true} }, | |
{ "keys": ["alt+shift+down"], "command": "move_to", "args": {"to": "eof", "extend": true} }, | |
{ "keys": ["ctrl+up"], "command": "move", "args": {"by": "lines", "forward": false, "extend": true} }, | |
{ "keys": ["ctrl+down"], "command": "move", "args": {"by": "lines", "forward": true, "extend": true} }, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment