Last active
September 23, 2017 01:07
-
-
Save dnavas77/e95c8bbfc22e98ae4c49a3c61d598820 to your computer and use it in GitHub Desktop.
This file contains 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
/* ~~~~~~~~~~ USER PREFERENCES ~~~~~~~~~~~~ */ | |
{ | |
"color_scheme": "Packages/Color Scheme - Default/Mariana.tmTheme", | |
"font_face": "Menlo", | |
"font_size": 13, | |
"tab_size": 2, | |
"ignored_packages": | |
[ | |
], | |
"theme": "Default.sublime-theme", | |
"vintage_ctrl_keys": true, | |
"vintage_start_in_command_mode": true, | |
"draw_indent_guides": true, | |
"fade_fold_buttons": true, | |
"highlight_modified_tabs": true, | |
"line_numbers": true, | |
"preview_on_click": false, | |
"rulers": | |
[ | |
80 | |
], | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"folder_exclude_patterns": [ | |
"node_modules", | |
"bower_components", | |
"dist", | |
".tmp", | |
".svn", | |
".git", | |
".hg", | |
"CVS" | |
], | |
"file_exclude_patterns": [ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.sublime-workspace" | |
], | |
"binary_file_patterns": [ | |
"generated/*", | |
"*.tbz2", | |
"*.gzip", | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", | |
"*.ico", | |
"*.eot", | |
"*.pdf", | |
"*.swf", | |
"*.jar", | |
"*.zip" | |
] | |
} | |
/* ~~~~~~~~~~ KEY BIDINGS ~~~~~~~~~~~~ */ | |
[ | |
{ "keys": ["l", "k"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["ctrl+j"], "command": "prev_view" }, | |
{ "keys": ["ctrl+k"], "command": "next_view" }, | |
{ "keys": ["ctrl+h"], "command": "focus_group", "args": { "group": 0 } }, | |
{ "keys": ["ctrl+l"], "command": "focus_group", "args": { "group": 1 } }, | |
{ "keys": ["ctrl+n"], "command": "toggle_side_bar" }, | |
] | |
/* ~~~~~~~~~~ PACKAGES ~~~~~~~~~~~~ */ | |
SublimeLinter | |
BracketHighlighter | |
SublimeJSHint | |
Sass | |
GitStatusBar | |
TodoReview |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment