Last active
October 13, 2015 15:58
-
-
Save bbrks/4220226 to your computer and use it in GitHub Desktop.
Sublime Text Configuration
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
{ | |
// Code Style | |
"trim_automatic_white_space": false, | |
"trim_trailing_white_space_on_save": true, | |
"ensure_newline_at_eof_on_save": true, | |
"translate_tabs_to_spaces": true, | |
"detect_indentation": true, | |
"tab_size": 2, | |
// Appearance | |
"theme": "Piatto Dark 3.sublime-theme", | |
"color_scheme": "Packages/Theme - Piatto/Piatto Dark.tmTheme", | |
"highlight_line": true, | |
"caret_style": "phase", | |
"rulers": [80, 125], | |
"word_wrap": "false", | |
"font_face": "Source Code Pro", | |
"font_size": 11.0, | |
// Misc | |
"scroll_past_end": true, | |
"spell_check": true, | |
"dictionary": "Packages/Language - English/en_GB.dic", | |
"ignored_packages": ["Vintage"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment