Skip to content

Instantly share code, notes, and snippets.

@gistfrojd
Last active March 24, 2016 08:14
Show Gist options
  • Save gistfrojd/b6829b91a0b31baf15c9 to your computer and use it in GitHub Desktop.
Save gistfrojd/b6829b91a0b31baf15c9 to your computer and use it in GitHub Desktop.
Sublime Preferences (this file has moved to https://github.com/Frojd/Manual)
{
// Optional but good to have settings is commented out
//"word_wrap": false,
//"show_minimap": false,
//"drawWhiteSpace": true,
//"rulers":[80, 120],
// "font_options": ["gray_antialias"] // Show crisp text on retina screen
// These settings is mandatory
// Always have 4 spaces indentation
"tab_size": 4,
// Make sure tabs are spaces
"translate_tabs_to_spaces": true,
// Always end files with a newline
"ensure_newline_at_eof_on_save": true,
// Always remove trailing whitespaces when saving
"trim_trailing_white_space_on_save": true,
// Exclude vc and package manager folders from search
"folder_exclude_patterns": [
".svn",
".git",
".hg",
"node_modules",
"venv"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment