Created
March 18, 2014 14:47
-
-
Save molovo/9621542 to your computer and use it in GitHub Desktop.
My SublimeText2 User Settings File
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
[ | |
// swap the keybindings for paste and paste_and_indent | |
{ | |
"keys": [ "super+v" ], | |
"command": "paste_and_indent" | |
}, { | |
"keys": [ "super+shift+v" ], | |
"command": "paste" | |
}, | |
// Add 'Jump to String' | |
{ | |
"keys": [ "ctrl+e" ], | |
"command": "jump_to_interactive" | |
}, { | |
"keys": [ "ctrl+shift+e" ], | |
"command": "jump_to_interactive", | |
"args": { | |
"extend": true | |
} | |
}, | |
// Git Bindings | |
{ | |
"keys": [ "super+shift+a" ], | |
"command": "git_add_choice" | |
}, { | |
"keys": [ "super+shift+c" ], | |
"command": "git_commit" | |
}, | |
// Swap key bindings for jumping between words and subwords | |
{ | |
"keys": [ "alt+left" ], | |
"command": "move", | |
"args": { | |
"by": "subwords", | |
"forward": false | |
} | |
}, { | |
"keys": [ "alt+right" ], | |
"command": "move", | |
"args": { | |
"by": "subword_ends", | |
"forward": true | |
} | |
}, { | |
"keys": [ "ctrl+left" ], | |
"command": "move", | |
"args": { | |
"by": "words", | |
"forward": false | |
} | |
}, { | |
"keys": [ "ctrl+right" ], | |
"command": "move", | |
"args": { | |
"by": "word_ends", | |
"forward": true | |
} | |
}, | |
// Move command palette key binding, and add git push to current branch | |
{ | |
"keys": [ "super+alt+p" ], | |
"command": "show_overlay", | |
"args": { | |
"overlay": "command_palette" | |
} | |
}, { | |
"keys": [ "super+shift+p" ], | |
"command": "git_push_current_branch" | |
} | |
] |
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_upgrade_last_run": null, | |
"installed_packages": | |
[ | |
"Base64 Fold", | |
"BracketHighlighter", | |
"CodeFormatter", | |
"CSS Snippets", | |
"DocBlockr", | |
"Emmet", | |
"Emmet Css Snippets", | |
"FileDiffs", | |
"Format SQL", | |
"Front End Snippets", | |
"Gist", | |
"Git", | |
"GitGutter", | |
"Github Color Theme", | |
"HtmlTidy", | |
"Jade", | |
"Jade Snippets", | |
"Javascript Beautify", | |
"jQuery", | |
"JSHint Gutter", | |
"Laravel Blade Highlighter", | |
"LESS", | |
"Minifier", | |
"Minify", | |
"Package Control", | |
"PhpBeautifier", | |
"Prefixr", | |
"SASS Snippets", | |
"SublimeLinter", | |
"SublimeOnSaveBuild", | |
"Syntax Highlighting for Sass", | |
"Theme - Spacegray" | |
] | |
} |
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": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_indent": true, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
"detect_slow_plugins": false, | |
"fade_fold_buttons": false, | |
"folder_exclude_patterns": | |
[ | |
".bundle", | |
".git", | |
".hg", | |
".pygments-cache", | |
".rbx", | |
".sass-cache", | |
".svn", | |
"coverage", | |
"CVS", | |
"data", | |
"log", | |
"node_modules", | |
"tmp" | |
], | |
"font_face": "Source Code Pro", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias" | |
], | |
"font_size": 14.0, | |
"gutter": true, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"indent_subsequent_lines": true, | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"remember_open_files": true, | |
"remember_open_folders": true, | |
"shift_tab_unindent": true, | |
"tab_completion": true, | |
"tab_size": 2, | |
"theme": "Spacegray.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"tree_animation_enabled": true, | |
"trim_trailing_white_space_on_save": true, | |
"wide_caret": "true", | |
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?", | |
"word_wrap": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment