Last active
November 11, 2016 12:18
-
-
Save nurrony/d2881da74c586e0b0799c59b2b77307d to your computer and use it in GitHub Desktop.
My Sublime Text Settings and Plugins List
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
{ | |
"Seti_mouse_wheel_tabswitch": true, | |
"Seti_no_bar_undertabs": true, | |
"Seti_tabs_med": true, | |
"Seti_SB_bright": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Seti_UX/Seti.tmTheme", | |
"detect_indentation": false, | |
"draw_indent_guides": true, | |
"draw_white_space": "selection", | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"node_modules", | |
".idea", | |
".DS_Store", | |
"Thumbs.db", | |
".Trash-*", | |
".vagrant" | |
], | |
"font_size": 11, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 1, | |
"overlay_scroll_bars": "enabled", | |
"tab_size": 2, | |
"theme": "Seti.sublime-theme", | |
"todo": | |
{ | |
"case_sensitive": true, | |
"patterns": | |
{ | |
"CHANGED": "CHANGED[\\s]*?:+(?P<changed>\\S.*)$", | |
"FIXME": "FIX?ME[\\s]*?:+(?P<fixme>\\S.*)$", | |
"NOTE": "NOTE[\\s]*?:+(?P<note>.*)$", | |
"TODO": "TODO[\\s]*?:+(?P<todo>.*)$" | |
} | |
}, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"use_tab_stops": true, | |
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?", | |
"word_wrap": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nmrony I am surprised that you don't use
"scroll_past_end": true
. Here is mine https://gist.github.com/fatihacet/6b9f5489ffe11998b403