Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vsakaria/5186875 to your computer and use it in GitHub Desktop.
Save vsakaria/5186875 to your computer and use it in GitHub Desktop.
{
// This is the ruby default
"tab_size": 2,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true,
// This shows all your whitespace, including spaces and tabs
// helps keep code clean and properly indented!
"draw_white_space": "all",
// Ignore .git folder
"folder_exclude_patterns":
[
".git"
],
// This is really useful, no more hitting ⌘ + s
// your tab gets automatically saved as soon as you switch to another
"save_on_focus_lost": true,
// This cleans up your file whenever its saved
"trim_trailing_white_space_on_save": true,
// Makes it clear your lines are too long!
"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment