Last active
July 29, 2016 09:37
-
-
Save nickgnd/c2bcab8d82c71d8d34cc to your computer and use it in GitHub Desktop.
Sublime Text 3.0 config
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
// Standard user configurations | |
{ | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", | |
"*.ico", | |
"*.eot", | |
"*.pdf", | |
"*.swf", | |
"*.jar", | |
"*.zip", | |
"node_modules/**", | |
"bower_components/**" | |
], | |
"bold_folder_labels": true, | |
"caret_style": "solid", | |
"color_scheme": "Packages/User/SublimeLinter/Oceanic Next (SL).tmTheme", | |
"draw_white_space": "all", | |
"enable_tab_scrolling": false, | |
"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", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.beam", | |
".DS_Store", | |
".tags" | |
], | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
".sass-cache" | |
], | |
"font_face": "Menlo", | |
"font_options": | |
[ | |
"subpixel_antialias", | |
"no_round" | |
], | |
"font_size": 11.0, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"index_files": true, | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"rulers": | |
[ | |
100 | |
], | |
"scroll_past_end": false, | |
"spell_check": false, | |
"tab_completion": true, | |
"tab_size": 2, | |
"theme": "Flatland Dark.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"vintage_start_in_command_mode": false, | |
"wide_caret": true, | |
"word_separators": "./\\()\"'-:,.;<>~@#$%^&*|+=[]{}`~", | |
"word_wrap": false | |
} | |
// JS configuration | |
{ | |
"detect_indentation": true, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": false, | |
"extensions": | |
[ | |
"js" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment