-
-
Save namklabs/9533287 to your computer and use it in GitHub Desktop.
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": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" } | |
] |
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/IDLE.tmTheme", | |
"ignored_packages": [ "Vintage" ], | |
// Characters that are considered to separate words | |
"word_separators": "./\\()\"':,.;<>~!@#%^&*|+=[]{}`~?", | |
// Hides the fold buttons unless the mouse is over the gutter | |
"fade_fold_buttons": false, | |
// Set to true to turn spell checking on by default | |
"spell_check": true, | |
// Controls how the indent guides are drawn, valid options are | |
// "draw_normal" and "draw_active". draw_active will draw the indent | |
// guides containing the caret in a different color. | |
"indent_guide_options": ["draw_active"], | |
// Set to true to removing trailing white space on save | |
"trim_trailing_white_space_on_save": true, | |
// Set to true to ensure the last line of the file ends in a newline | |
// character when saving | |
"ensure_newline_at_eof_on_save": true, | |
// By default, shift+tab will only unindent if the selection spans | |
// multiple lines. When pressing shift+tab at other times, it'll insert a | |
// tab character - this allows tabs to be inserted when tab_completion is | |
// enabled. Set this to true to make shift+tab always unindent, instead of | |
// inserting tabs. | |
"shift_tab_unindent": true, | |
// Makes tabs with modified files more visible | |
"highlight_modified_tabs": true, | |
"show_tab_close_buttons": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment