Skip to content

Instantly share code, notes, and snippets.

@jacobb
Created August 30, 2012 19:15
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacobb/3538158 to your computer and use it in GitHub Desktop.
Save jacobb/3538158 to your computer and use it in GitHub Desktop.
sublimetext 2 conf
[
{ "keys": ["ctrl+f"], "command": "indentxml" },
{ "keys": ["super+k", "super+b"], "command": "toggle_side_bar" },
{
"keys": ["super+shift+2"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 0.5, 1.0],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
}
},
{
"keys": ["super+shift+1"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
}
},
{ "keys": ["super+ctrl+alt+up"], "command": "scroll_lines", "args": {"amount": 5.0} },
{ "keys": ["super+ctrl+alt+down"], "command": "scroll_lines", "args": {"amount": -5.0} },
// Easier goto line
{ "keys": ["super+;"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }
]
{
"auto_complete_commit_on_tab": true,
"color_scheme": "Packages/Tomorrow-Night.tmTheme",
"find_selected_text": true,
"folder_exclude_patterns":
[
"__pycache__",
".svn",
".git",
".hg",
"CVS",
"_build",
"dist",
"build",
"htmlcov"
],
"font_face": "Ubuntu Mono",
"font_options":
[
"subpixel_antialias"
],
"font_size": 13.0,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"rulers":
[
79
],
"soda_classic_tabs": true,
"tab_size": 4,
"theme": "Soda Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment