Created
September 16, 2013 18:07
-
-
Save Iristyle/6584292 to your computer and use it in GitHub Desktop.
Preferences.Sublime-settings
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
{ | |
"auto_complete_commit_on_tab": true, | |
"caret_style": "phase", | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Solarized Color Scheme/Solarized (dark).tmTheme", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Source Code Pro Semibold", | |
"font_size": 15.0, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"HTML Export", | |
"Vintage", | |
"MultiTaskBuild", | |
"TrailingSpaces", | |
"Caret History", | |
"QuickFileMove", | |
"SublimeREPL", | |
"GotoRecent", | |
"Open Related" | |
], | |
"indent_guide_options": | |
[ | |
"draw_active", | |
"draw_normal" | |
], | |
"rulers": | |
[ | |
50, | |
72, | |
80, | |
120 | |
], | |
"show_full_path": true, | |
"show_tab_close_buttons": false, | |
"tab_size": 2, | |
"theme": "Soda Dark.sublime-theme", | |
"todo": | |
{ | |
"case_sensitive": true, | |
"file_exclude_patterns": | |
[ | |
"*.css", | |
"*.po", | |
"*.mo" | |
], | |
"folder_exclude_patterns": | |
[ | |
"generated", | |
"static", | |
"vendor", | |
"tmp" | |
], | |
"patterns": | |
{ | |
"BUG": "BUG[\\s]*?:+(?P<bug>.*)$", | |
"FIXME": "FIX ?ME[\\s]*?:+(?P<fixme>\\S.*)$", | |
"HACK": "HACK[\\s]*?:+(?P<hack>.*)$", | |
"NOTE": "NOTE[\\s]*?:+(?P<note>.*)$", | |
"TODO": "TODO[\\s]*?:+(?P<todo>.*)$" | |
}, | |
"result_title": "TODO Results" | |
}, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"wide_caret": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment