Created
December 18, 2013 17:54
-
-
Save BrendonKoz/8026802 to your computer and use it in GitHub Desktop.
Sublime Text 3 - User 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
// Settings in here override those in "Default/Preferences.sublime-settings", | |
// and are overridden in turn by file type specific settings. | |
{ | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_with_fields": true, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Color Scheme - Default/Mac Classic.tmTheme", | |
"font_face": "Courier New", | |
"font_size": 10, | |
"ignored_packages": | |
[ | |
"DocBlockr", | |
"SublimeLinter", | |
"Emmet", | |
"SublimeCodeIntel", | |
"Emmet Css Snippets" | |
], | |
"open_files_in_new_window": false, | |
"wide_caret": true, | |
"word_wrap": true, | |
"trim_trailing_white_space_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", | |
"*.rdb", | |
"*.sqlite3", | |
"*.log", | |
"ascp", | |
"*.gz" | |
], | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
".yardoc", | |
"coverage", | |
"pkg", | |
"tmp", | |
"logs", | |
"db/mongo", | |
".vagrant", | |
"build", | |
"_site" | |
], | |
"highlight_line": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment