Skip to content

Instantly share code, notes, and snippets.

@adamcbrewer
Last active October 9, 2015 07:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamcbrewer/d284a4ad28c2dcdeac5f to your computer and use it in GitHub Desktop.
Save adamcbrewer/d284a4ad28c2dcdeac5f to your computer and use it in GitHub Desktop.
ST: Sublime Text Preferences
[
{ "keys": ["alt+super+shift+f"], "command": "show_panel", "args": {"panel": "find_in_files"} },
{ "keys": ["super+shift+f"], "command": "search_in_project" }, // requires SearchInProject to be enabled
{ "keys": ["super+k","super+m"], "command": "toggle_minimap" },
{ "keys": ["super+k", "super+t"], "command": "title_case" },
{
"keys": ["super+alt+left"],
"command": "set_layout",
"args": {
"cols": [0.0, 0.33, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["super+alt+right"],
"command": "set_layout",
"args": {
"cols": [0.0, 0.66, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["super+alt+up"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 0.33, 1.0],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
}
},
{
"keys": ["super+alt+down"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 0.66, 1.0],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
}
}
]
{
"auto_upgrade_last_run": null,
"installed_packages":
[
"AngularJS",
"AutoFileName",
"ClosureMyJS",
"Dayle Rees Color Schemes",
"Djaneiro",
"DocBlockr",
"Dotfiles Syntax Highlighting",
"EditorConfig",
"Emmet",
"Gist",
"GitGutter",
"Handlebars",
"HTML5",
"JavaScript Snippets",
"Laravel Blade Highlighter",
"LESS",
"List LESS Variables",
"Markdown Preview",
"Package Control",
"Sass",
"SFTP",
"SideBarEnhancements",
"SublimeLinter",
"Syntax Highlighting for Sass",
"Theme - Flatland",
"Theme - Spacegray",
"WordCount"
]
}
{
"auto_close_tags": false,
"bold_folder_labels": true,
"caret_style": "smooth",
"color_scheme": "Packages/User/base16-eighties.dark (SL).tmTheme",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".DS_Store",
".gitkeep",
"dump.rdb",
"*.pyc"
],
"folder_exclude_patterns":
[
".git",
".hg",
".sass-cache",
"coverage",
"log",
"tmp",
"cache",
"/uploads"
],
"font_face": "Monaco",
"font_size": 12.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"index_exclude_patterns": [],
"line_padding_bottom": 1,
"line_padding_top": 1,
"match_brackets": true,
"match_brackets_angle": true,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,
"save_on_focus_lost": false,
"spell_check": true,
"tab_size": 4,
"theme": "Spacegray.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"wide_caret": true,
"word_separators": "./\\()\"'-:,.;<>~!@#%^&$*|+=[]{}`~?",
"word_wrap": false,
"wrap_width": 80
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment