Skip to content

Instantly share code, notes, and snippets.

@adamwiggall
Created July 16, 2014 13:49
Show Gist options
  • Save adamwiggall/89188d528544282a4114 to your computer and use it in GitHub Desktop.
Save adamwiggall/89188d528544282a4114 to your computer and use it in GitHub Desktop.
Syntax specific setting in Sublime Text
{
// 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