Last active
June 19, 2017 18:32
-
-
Save yowainwright/2346701d563bc696eb82a1d73bbf2793 to your computer and use it in GitHub Desktop.
Quick Settings for Sublime 3 Setup
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 syntax-specific settings. | |
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"folder_exclude_patterns": | |
[ | |
".git", | |
".bundle", | |
".sass-cache", | |
"node_modules", | |
"tmp", | |
"bower_components" | |
], | |
"font_face": "mplus-2m-medium", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias" | |
], | |
"font_size": 17.0, | |
"ignored_packages": | |
[ | |
"Material Theme - Appbar", | |
"Vintage" | |
], | |
"indent_guide_options": | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"material_theme_big_fileicons": true, | |
"mediawiker_files_extension": | |
[ | |
"wiki" | |
], | |
"overlay_scroll_bars": "enabled", | |
"spacegray_fileicons": true, | |
"spell_check": true, | |
"tab_size": 2, | |
"theme": "Default.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"word_wrap": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment