Last active
August 29, 2015 14:19
-
-
Save fortruce/0e6915ef0185365ad08a to your computer and use it in GitHub Desktop.
My SublimeText 3 Configurations
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
[ | |
{"keys": ["ctrl+/"], "command": "undo"}, | |
{"keys": ["ctrl+;"], "command": "toggle_comment", "args": {"block": false}}, | |
{"keys": ["ctrl+x", ";"], "command": "show_overlay", "args": {"overlay": "goto", "text": "#"}}, | |
{"keys": ["ctrl+p"], "command": "move", "args": {"by": "lines", "forward": false}}, | |
{"keys": ["ctrl+n"], "command": "move", "args": {"by": "lines", "forward": true}}, | |
{"keys": ["ctrl+f"], "command": "move", "args": {"by": "characters", "forward": true}}, | |
{"keys": ["ctrl+b"], "command": "move", "args": {"by": "characters", "forward": false}}, | |
{"keys": ["ctrl+a"], "command": "move_to", "args": {"extend": false, "to": "hardbol"}}, | |
{"keys": ["ctrl+e"], "command": "move_to", "args": {"extend": false, "to": "hardeol"}}, | |
{"keys": ["alt+f"], "command": "sbp_move_word", "args": {"direction": 1}}, | |
{"keys": ["alt+b"], "command": "sbp_move_word", "args": {"direction": -1}}, | |
{"keys": ["ctrl+s"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": false}}, | |
{"keys": ["ctrl+x", "ctrl+s"], "command": "save"}, | |
{"keys": ["ctrl+g"], "command": "show_overlay", "args": {"overlay": "goto"}}, | |
{"keys": ["ctrl+k"], "command": "sbp_move_then_delete", "args": {"move_cmd": "sbp_move_for_kill_line"}} | |
] |
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
SublimeCodeIntel | |
SublimeLinter | |
jsxhint | |
scss | |
Babel | |
DocBlockr | |
Sublemacspro | |
TrailingSpaces | |
SublimeREPL |
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
{ | |
"color_scheme": "Packages/User/SublimeLinter/Monokai Phoenix (SL).tmTheme", | |
"font_size": 15, | |
"hide_minimap": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80 | |
], | |
"tab_size": 2, | |
"theme": "Gravity.sublime-theme", | |
"translate_tabs_to_spaces": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment