Skip to content

Instantly share code, notes, and snippets.

@dannguyen
Last active August 29, 2015 13:57
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 dannguyen/9578315 to your computer and use it in GitHub Desktop.
Save dannguyen/9578315 to your computer and use it in GitHub Desktop.
Setting the defaults for my Sublime Text 3
{
"always_show_minimap_viewport": true,
"auto_complete_commit_on_tab": true,
"auto_find_in_selection": true,
"binary_file_patterns":
[
"*.log",
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"*.min.*"
],
"color_scheme": "Packages/User/Solarized (Dark) (SL).tmTheme",
"drag_text": false,
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".env_keys",
"*.eot",
"*.svg",
"*.ttf",
"*.woff",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.zip",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace"
],
"folder_exclude_patterns":
[
"db/dump",
"dist",
"build",
".svn",
".git",
".hg",
"CVS",
"node_modules",
".sass-cache",
".tmp",
"tmp",
"bower_components"
],
"font_face": "Source Code Pro",
"font_size": 13,
"ignored_packages":
[
"Markdown",
"Vintage"
],
"index_exclude_patterns":
[
"*.log"
],
"index_files": true,
"scroll_past_end": 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