Last active
August 17, 2017 10:31
-
-
Save dominicsayers/4686bd71af4079f0af5c to your computer and use it in GitHub Desktop.
Sublime Text 3 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
{ | |
"folder_exclude_patterns": [".git", "coverage", "cache", "uploads"], | |
"binary_file_patterns": | |
[ | |
"*/tmp/*", | |
"*/attachment/*", | |
"log/", | |
"coverage/", | |
"*/public/uploads/*", | |
"*/public/assets/*", | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", | |
"*.ico", | |
"*.eot", | |
"*.pdf", | |
"*.swf", | |
"*.jar", | |
"*.zip" | |
], | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"default_line_ending": "unix", | |
"dictionary": "Packages/Language - English/en_GB.dic", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Source Code Pro", | |
"font_size": 11, | |
"font_options": | |
[ | |
"directwrite" | |
], | |
"line_padding_top": 1, | |
"line_padding_bottom": 1, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80, | |
120 | |
], | |
"show_line_endings": true, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment