Created
August 20, 2012 18:12
-
-
Save ericlbarnes/3406286 to your computer and use it in GitHub Desktop.
Sublime Text Preferences
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": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
{ | |
"keys": ["super+shift+1"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1]] | |
} | |
}, | |
{ | |
"keys": ["super+shift+2"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 0.5, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]] | |
} | |
}, | |
{ | |
"keys": ["super+ctrl+l"], | |
"command": "split_screen_resizer", | |
"args": { | |
"side": "left", | |
"ratio": "2:1", | |
"autofocus": true | |
} | |
}, | |
{ | |
"keys": ["super+ctrl+h"], | |
"command": "split_screen_resizer", | |
"args": { | |
"side": "right", | |
"ratio":"1:2", | |
"autofocus": true | |
} | |
} | |
] |
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
{ | |
"auto_complete_commit_on_tab": true, | |
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
"fade_fold_buttons": false, | |
"font_face": "Panic Sans", | |
"font_size": 12.0, | |
"highlight_line": true, | |
"line_padding_bottom": 4, | |
"line_padding_top": 4, | |
"rulers": | |
[ | |
80 | |
], | |
"tab_size": 2, | |
"theme": "Soda Light.sublime-theme", | |
"trim_automatic_white_space": true, | |
"trim_trailing_white_space_on_save": true, | |
"word_wrap": true, | |
"wrap_width": 80, | |
"vintage_start_in_command_mode": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice, I didn't know about
vintage_start_in_command_mode
!