Skip to content

Instantly share code, notes, and snippets.

@m-basov
Created November 10, 2014 16:51
Show Gist options
  • Save m-basov/9ac86f16722f46330a6f to your computer and use it in GitHub Desktop.
Save m-basov/9ac86f16722f46330a6f to your computer and use it in GitHub Desktop.
Sublime Default Config
{
"auto_complete_commit_on_tab": true,
"caret_style": "solid",
"color_scheme": "Packages/RailsCasts Colour Scheme/RailsCastsColorScheme.tmTheme",
"draw_white_space": "all",
"enable_tab_scrolling": false,
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
"*.class",
"*.psd",
"*.db",
"*.beam",
".DS_Store",
".tags"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".sass-cache"
],
"font_face": "Inconsolata",
"font_options":
[
"no_round"
],
"font_size": 12,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Markdown",
"Vintage"
],
"rulers":
[
78,
80,
120
],
"scroll_past_end": false,
"tab_size": 2,
"theme": "Soda Light 3.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"wide_caret": true,
"word_separators": "./\\()\"'-:,.;<>~@#$%^&*|+=[]{}`~",
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment