Last active
October 14, 2015 02:08
-
-
Save noahcoad/4291528 to your computer and use it in GitHub Desktop.
Some of my favorite Sublime Text 2 options. Just click Preferences menu > Settings - User to open 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
Show hidden characters
{ | |
// Save files when focus changes, | |
// like to a new file or another program | |
"save_on_focus_lost": true, | |
// Make tabs small | |
"tab_size": 2, | |
// Keep tabs. Tabs are used to indent the start of lines | |
// and different devs like different indention levels. | |
// Spaces should be used to indent anywhere else. | |
// <let the flame wars begin> | |
"translate_tabs_to_spaces": false, | |
// Don't wrap long lines of text by default | |
"word_wrap": false, | |
// Just a null value to keep commas on previous lines | |
"": "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment