Created
June 1, 2012 16:37
-
-
Save renz45/2853435 to your computer and use it in GitHub Desktop.
Default Sublime text 2 user settings
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
{ | |
// calculates indentation automatically when pressing enter | |
"auto_indent": true, | |
// sets the colors used within the text area (default) | |
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme", | |
// useful to block endings and closing tags | |
"draw_indent_guides": true, | |
// highly legible monospaced font | |
"font_face": "Inconsolata", | |
// glasses are expensive, protect your eyesight | |
"font_size": 16.0, | |
// turning on Vintage (Vim-like) Mode | |
"ignored_packages": | |
[ | |
"[]" | |
], | |
// letting it breaaaathe! | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
// setting for the 'alignment' package | |
"mid_line_tabs": false, | |
// using two spaces | |
"tab_size": 2, | |
// inserts spaces when tab is pressed | |
"translate_tabs_to_spaces": true, | |
// if translate_tabs_to_spaces is true, use_tab_stops will make tab and | |
// backspace insert/delete up to the next tabstop | |
"use_tab_stops": true, | |
// tired of trying to decipher whether something's a folder or a file? | |
"bold_folder_labels": true, | |
// creates useful wrapping guides to know when to end a line of code | |
"rulers": [70, 80] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment