Skip to content

Instantly share code, notes, and snippets.

@grsahil20
Created July 2, 2014 05:44
Show Gist options
  • Save grsahil20/a3b382f67b102d42423e to your computer and use it in GitHub Desktop.
Save grsahil20/a3b382f67b102d42423e to your computer and use it in GitHub Desktop.
{
// Colors
"color_scheme": "Packages/RailsCasts Colour Scheme/RailsCastsColorScheme.tmTheme",
"theme": "Soda Light 3.sublime-theme",
// Font
"font_size": 11,
"font_options": ["no_round"],
// Cursor style - no blinking and slightly wider than default
"caret_style": "solid", // disables blinking of cursor
"wide_caret": true, // makes cursor more thick
// Editor view look-and-feel
"draw_white_space": "all", // shows tabs or spaces
"highlight_line": true, // hghlight current line
// Editor behavior
"highlight_modified_tabs": true,
"save_on_focus_lost": true,
"scroll_past_end": false, // removes extra space at the end of file
"auto_complete_commit_on_tab": true,
"ignored_packages": ["Vintage"],
"word_separators": "./\\()\"'-:,.;<>~@#$%^&*|+=[]{}`~",
"line_padding_bottom": 1,
"line_padding_top": 1,
"spell_check": true,
// Word wrapping
"rulers": [80, 120, 120, 140, 160],
"word_wrap": false,
// Whitespace - no tabs, trimming, end files with \n
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"ensure_newline_at_eof_on_save": true,
"enable_tab_scrolling": false,
// Indentations
"auto_indent": true,
"detect_indentation": true,
"draw_indent_guides": true,
"smart_indent": true,
// Sidebar - exclude distracting files and folders
"bold_folder_labels": true,
// Auto complete
"auto_complete_selector": "text.html.erb, source - comment, meta.tag - punctuation.definition.tag.begin",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment