Skip to content

Instantly share code, notes, and snippets.

@ericlbarnes
Created August 20, 2012 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ericlbarnes/3406286 to your computer and use it in GitHub Desktop.
Save ericlbarnes/3406286 to your computer and use it in GitHub Desktop.
Sublime Text Preferences
[
{ "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
}
}
]
{
"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
}
@ccschmitz
Copy link

Nice, I didn't know about vintage_start_in_command_mode!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment