Created
August 8, 2014 18:17
-
-
Save atuttle/48423447e4b2e18a60d8 to your computer and use it in GitHub Desktop.
My Sublime Text 3 Preferences and Keymaps
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
Show hidden characters
[ | |
{ "keys": ["alt+up"], "command": "swap_line_up" } | |
,{ "keys": ["alt+down"], "command": "swap_line_down" } | |
,{ "keys": ["ctrl+alt+down"], "command": "duplicate_line" } | |
,{ "keys": ["alt+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} } | |
,{ | |
"keys": ["ctrl+alt+left"], | |
"command": "set_layout", | |
"args": { | |
"cols": [0.0, 0.75, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]] | |
} | |
} | |
,{ | |
"keys": ["ctrl+alt+right"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 0.25, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]] | |
} | |
} | |
,{ "keys": ["super+1"], "command": "focus_group", "args": { "group": 0 } } | |
,{ "keys": ["super+2"], "command": "focus_group", "args": { "group": 1 } } | |
,{ "keys": ["super+3"], "command": "focus_group", "args": { "group": 2 } } | |
,{ "keys": ["super+4"], "command": "focus_group", "args": { "group": 3 } } | |
,{ "keys": ["alt+1"], "command": "move_to_group", "args": { "group": 0 } } | |
,{ "keys": ["alt+2"], "command": "move_to_group", "args": { "group": 1 } } | |
,{ "keys": ["alt+3"], "command": "move_to_group", "args": { "group": 2 } } | |
,{ "keys": ["alt+4"], "command": "move_to_group", "args": { "group": 3 } } | |
,{ "keys": ["f3"], "command": "next_bookmark" } | |
,{ "keys": ["shift+f3"], "command": "prev_bookmark" } | |
,{ "keys": ["super+f3"], "command": "toggle_bookmark" } | |
,{ "keys": ["super+shift+f3"], "command": "clear_bookmarks" } | |
,{ "keys": ["alt+f3"], "command": "select_all_bookmarks" } | |
,{ "keys": ["alt+,"], "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" } } | |
,{ "keys": ["super+shift+k"], "command": "jshint_clear_annotations" } | |
,{ "keys": ["alt+m"], "command": "mark_and_move_do_it_all" } | |
] |
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
{ | |
"installed_packages": | |
[ | |
"AdvancedNewFile", | |
"Alignment", | |
"AngularJS", | |
"BracketHighlighter", | |
"Case Conversion", | |
"ColdFusion", | |
"DashDoc", | |
"Dayle Rees Color Schemes", | |
"EJS", | |
"Ember.js Snippets", | |
"Emmet", | |
"Gist", | |
"GitGutter", | |
"Glue", | |
"Handlebars", | |
"Indent XML", | |
"Jade", | |
"JSHint Gutter", | |
"LESS", | |
"MarkAndMove", | |
"Markdown Preview", | |
"MarkdownEditing", | |
"MXUnit", | |
"Nodejs", | |
"Perv - Color Scheme", | |
"Prefixr", | |
"Require Node.js Modules Helper", | |
"SideBarEnhancements", | |
"SoucreTalk (real time code discussions)", | |
"SublimeLinter", | |
"SummitEditor", | |
"SummitLinter", | |
"Tag", | |
"tern_for_sublime", | |
"Theme - Nexus", | |
"Theme - Phoenix", | |
"Theme - Soda", | |
"Theme - Spacegray", | |
"Themr", | |
"ZenCoding" | |
] | |
} |
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/Color Scheme - Default/GitHub.tmTheme", | |
"disable_formatted_linebreak": true, | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": false, | |
"folder_exclude_patterns": | |
[ | |
".git", | |
".svn" | |
], | |
"font_face": "Source Code Pro", | |
"font_size": 11, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"EJS", | |
"SublimeLinter", | |
"ZenCoding", | |
"BracketHighlighter", | |
"MarkdownEditing", | |
"Pretty JSON", | |
"SJSON", | |
"LiveReload", | |
"Vintage" | |
], | |
"indent_guide_options": | |
[ | |
"draw_active" | |
], | |
"scroll_past_end": true, | |
"tab_size": 3, | |
"theme": "Phoenix Light.sublime-theme", | |
"trim_automatic_white_space": false, | |
"trim_trailing_white_space_on_save": true, | |
"word_wrap": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment