Last active
December 19, 2015 17:09
-
-
Save jCrip/5989376 to your computer and use it in GitHub Desktop.
My Sublime Text 2 personal 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
{ | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", | |
"selector": "text.html" | |
}, | |
{ | |
"characters": "/", | |
"selector": "string.quoted.double.html,string.quoted.single.html, source.css" | |
} | |
], | |
"auto_complete_with_fields": true, | |
"auto_id_class": false, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - jCrip/Stereokai Flatland.tmTheme", | |
"create_window_at_startup": true, | |
"detect_slow_plugins": false, | |
"dictionary": "Packages/Dictionaries/Spanish.dic", | |
"disable_formatted_linebreak": false, | |
"disable_tab_abbreviations": false, | |
"disable_tab_abbreviations_on_auto_complete": true, | |
"draw_centered": false, | |
"draw_minimap_border": true, | |
"enable_emmet_keymap": true, | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
".gitattributes", | |
".gitignore" | |
], | |
"find_selected_text": true, | |
"flatland_square_tabs": true, | |
"folder_exclude_patterns": | |
[ | |
".git", | |
".hg", | |
".sass-cache", | |
".svn", | |
"CVS" | |
], | |
"font_face": "Source Code Pro", | |
"font_size": 13.0, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"indent_to_bracket": true, | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"open_files_in_new_window": false, | |
"revert_font_size": 13.0, | |
"rulers": | |
[ | |
], | |
"save_on_focus_lost": false, | |
"scroll_past_end": true, | |
"shift_tab_unindent": true, | |
"show_full_path": false, | |
//"soda_classic_tabs": false, | |
"tab_size": 4, | |
"theme": "Flatland Dark.sublime-theme", | |
"todo": | |
{ | |
"case_sensitive": true, | |
"file_exclude_patterns": | |
[ | |
"*.txt" | |
], | |
"folder_exclude_patterns": | |
[ | |
"js" | |
], | |
"patterns": | |
{ | |
"BUG": "BUG[\\s]*?:+(?P<bug>.*)$" | |
}, | |
"result_title": "TODO Results" | |
}, | |
"translate_tabs_to_spaces": false, | |
"trim_trailing_white_space_on_save": true, | |
"use_simple_full_screen": true, | |
"word_wrap": true, | |
"wrap_width": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment