Skip to content

Instantly share code, notes, and snippets.

@codingfoo
Created May 7, 2014 23:08
Show Gist options
  • Save codingfoo/e3ccb4e4fcd1c4839a29 to your computer and use it in GitHub Desktop.
Save codingfoo/e3ccb4e4fcd1c4839a29 to your computer and use it in GitHub Desktop.
Sublime Config
{
"auto_complete_commit_on_tab": true,
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"*.log",
"*.mov",
"*.ogg",
"application.js"
],
"color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme",
"draw_white_space": "selection",
"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",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.min.js*",
"*.sublime-project",
"*.sublime-workspace"
],
"folder_exclude_patterns":
[
"public/assets",
"public/dev-assets",
"node_modules",
".svn",
".git",
".hg",
"CVS",
"dist",
"tmp"
],
"font_face": "Monaco",
"font_size": 30,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"save_on_focus_lost": true,
"tab_completion": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment