Last active
August 29, 2015 14:24
-
-
Save AlexVKO/8fd4e6163a120a7c7658 to your computer and use it in GitHub Desktop.
My sublime settings
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
Show hidden characters
[ | |
{"keys": ["alt+up"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false}}, | |
{"keys": ["alt+down"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true}}, | |
{"keys": ["shift+alt+up"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false, "extend": true}}, | |
{"keys": ["shift+alt+down"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true, "extend": true}}, | |
{"keys": ["shift+ctrl+["], "command": "focus_group", "args": { "group": 0 } }, | |
{"keys": ["shift+ctrl+]"], "command": "focus_group", "args": { "group": 1 } }, | |
{"keys": ["ctrl+super+shift+["], "command": "move_to_group", "args": { "group": 0 } }, | |
{"keys": ["ctrl+super+shift+]"], "command": "move_to_group", "args": { "group": 1 } }, | |
] |
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
{ | |
"always_show_minimap_viewport": false, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_with_fields": true, | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 0, | |
"caret_extra_top": 0, | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Theme - Spacegray/base16-eighties.dark.tmTheme", | |
"font_face": "Gotham", | |
"font_size": 14, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage", | |
"JSLint", | |
"Reindent on save" | |
], | |
"indent_guide_options": | |
[ | |
"draw_active" | |
], | |
"index_exclude_patterns": | |
[ | |
"/Volumes/Work/pizza_yeoman/bower_components*", | |
"*.log", | |
"/Volumes/Work/pizza_yeoman/node_modules*" | |
], | |
"line_numbers": false, | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"margin": 10, | |
"remember_full_screen": true, | |
"show_tab_close_buttons": false, | |
"spacegray_tabs_auto_width": true, | |
"spacegray_tabs_xlarge": true, | |
"tab_size": 2, | |
"theme": "Spacegray Eighties.sublime-theme", | |
"trim_trailing_white_space_on_save": true, | |
"word_separators": "./\\()\"':,.;<>~!@#$%^&*|+=[]{}`~?", | |
"word_wrap": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment