Last active
September 15, 2017 02:22
-
-
Save renatocarvalho/4190265 to your computer and use it in GitHub Desktop.
My User Settings for Sublime Text
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
Show hidden characters
{ | |
"binary_file_patterns": | |
[ | |
".svn/", | |
".git/", | |
".hg/", | |
"CVS/", | |
"node_modules/", | |
"bower_components/", | |
"dist/" | |
], | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
"*.DS_store", | |
"*.gem", | |
"*.gz", | |
"*.jar", | |
"*.sassc", | |
"*.scssc", | |
"*.xap", | |
"*.zip", | |
".gitkeep", | |
"dump.rdb", | |
".rake_tasks~", | |
"*.o" | |
], | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
".sass-cache", | |
".cache", | |
"tmp/cache/*", | |
".bin", | |
".bundle", | |
".yardoc", | |
"coverage", | |
"log", | |
"tmp", | |
"build", | |
"pkg" | |
], | |
"font_face": "Menlo", | |
"font_size": 16.0, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Package Control", | |
"Vintage" | |
], | |
"line_padding_bottom": 3, | |
"line_padding_top": 3, | |
"preview_on_click": false, | |
"tab_size": 2, | |
"theme": "Material-Theme.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"word_wrap": "false" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment