Created
July 16, 2014 13:49
-
-
Save adamwiggall/89188d528544282a4114 to your computer and use it in GitHub Desktop.
Syntax specific setting in Sublime Text
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
{ | |
// Which file extensions go with this file type? | |
"extensions": | |
[ | |
"md", | |
"mdown", | |
"mdwn", | |
"mmd", | |
"txt" | |
], | |
// Disables horizontal scrolling if enabled. | |
// May be set to true, false, or "auto", where it will be disabled for | |
// source code, and otherwise enabled. | |
"word_wrap": "true", | |
// Set to a value other than 0 to force wrapping at that column rather than the | |
// window width | |
"wrap_width": 80, | |
// Set to true to removing trailing white space on save | |
"trim_trailing_white_space_on_save": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment