Skip to content

Instantly share code, notes, and snippets.

@valdergallo
Last active May 18, 2017 14:04
Show Gist options
  • Save valdergallo/974c66bcc70a1e681bd9949cbe27eea6 to your computer and use it in GitHub Desktop.
Save valdergallo/974c66bcc70a1e681bd9949cbe27eea6 to your computer and use it in GitHub Desktop.
sublime3.settings
{
"auto_complete": true,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
}
],
"auto_indent": true,
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip"
],
"default_encoding": "UTF-8",
"default_line_ending": "unix",
"detect_indentation": false,
"detect_slow_plugins": false,
"draw_indent_guides": true,
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "UTF-8",
"file_exclude_patterns":
[
"*.min.js",
"*.min.css",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sqlite3",
".coverage",
".coveragerc",
".ipython",
".dropbox",
"*.sqlite"
],
"folder_exclude_patterns":
[
"__pycache__",
".svn",
".git",
".hg",
".tox",
".hgcheck",
"CVS"
],
"font_size": 11,
"ignored_packages":
[
"RestructuredText",
"Theme - Phoenix",
"Vintage"
],
"indent_to_bracket": true,
"pep8": true,
"pep8_ignore":
[
"E501",
"W191"
],
"rulers":
[
100
],
"shift_tab_unindent": true,
"smart_indent": true,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true,
"word_wrap": true,
"wrap_width": 100
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment