-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Luke F Wilson
committed
Oct 24, 2014
1 parent
6bcdbc9
commit b32c552
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// Settings in here override those in "Default/Preferences.sublime-settings", | ||
// and are overridden in turn by file type specific settings. | ||
{ | ||
"font_size": 12, | ||
"save_on_focus_lost": true, | ||
"tab_size": 2, | ||
"translate_tabs_to_spaces": true, | ||
"auto_complete_commit_on_tab": true, | ||
"bold_folder_labels": true, | ||
"draw_white_space": "all", | ||
"ensure_newline_at_eof_on_save": true, | ||
"file_exclude_patterns": | ||
[ | ||
".DS_Store", | ||
".tags*", | ||
"*.pyc", | ||
"*.pyo", | ||
"*.exe", | ||
"*.dll", | ||
"*.obj", | ||
"*.o", | ||
"*.a", | ||
"*.lib", | ||
"*.log", | ||
"*.so", | ||
"*.dylib", | ||
"*.ncb", | ||
"*.sdf", | ||
"*.suo", | ||
"*.pdb", | ||
"*.idb", | ||
"*.class", | ||
"*.psd", | ||
"*.db", | ||
"*.pdf" | ||
], | ||
"folder_exclude_patterns": | ||
[ | ||
".zeus.sock", | ||
".git", | ||
".svn", | ||
".hg", | ||
"CVS", | ||
".sass-cache", | ||
".bundle", | ||
"bundle", | ||
".rbx", | ||
"bin", | ||
"tmp" | ||
], | ||
"highlight_line": true, | ||
"highlight_modified_tabs": true, | ||
"ignored_packages": | ||
[ | ||
], | ||
"rulers": | ||
[ | ||
80 | ||
], | ||
"trim_trailing_white_space_on_save": true, | ||
"word_wrap": true | ||
} |