Skip to content

Instantly share code, notes, and snippets.

@valdergallo
Created January 17, 2013 19:19
Show Gist options
  • Save valdergallo/4558758 to your computer and use it in GitHub Desktop.
Save valdergallo/4558758 to your computer and use it in GitHub Desktop.
sublimetext2.user.settings
{
// my favorite color
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
// font size default
"font_size": 11,
// ignore lines with more than 80 caracters
"pep8_ignore": ["E501"],
// tabsize default for python
"tab_size": 4,
// Columns in which to display vertical rulers
"rulers": [120],
// Columns in width vertical
"wrap_width": 120,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true,
// Disable message from slow plugin
"detect_slow_plugins": false,
// Set to false to not trim white space added by auto_indent
"trim_automatic_white_space": true,
// Set to false to disable detection of tabs vs. spaces on load
"detect_indentation": false,
// Indent with brackets
"indent_to_bracket": true,
// Set to true to removing trailing white space on save
"trim_trailing_white_space_on_save": true,
// Set to true to ensure the last line of the file ends in a newline
// character when saving
"ensure_newline_at_eof_on_save": true,
// Auto ident next line
"smart_indent": true,
// Enable auto complete to be triggered automatically when typing.
"auto_complete": true,
// Additional situations to trigger auto complete
"auto_complete_triggers": [ {"selector": "text.html", "characters": "<"} ],
// By default, shift+tab will only unindent if the selection spans
"shift_tab_unindent": true,
// The encoding to use when the encoding can't be determined automatically.
// ASCII, UTF-8 and UTF-16 encodings will be automatically detected.
"fallback_encoding": "UTF-8",
// Encoding used when saving new files
"default_encoding": "UTF-8",
// Determines what character(s) are used to terminate each line in new files.
"default_line_ending": "system",
// Controls how the indent guides are drawn, valid options are
// "draw_normal" and "draw_active". draw_active will draw the indent
// guides containing the caret in a different color.
"draw_indent_guides": true,
// Enable visualisation of the matching tag in HTML and XML
"match_tags": true,
// Set to false to disable automatic indentation
"auto_indent": true,
// Set to false for horizontal scrolling
"word_wrap": true,
// If translate_tabs_to_spaces is true, use_tab_stops will make tab and
// backspace insert/delete up to the next tabstop
"use_tab_stops": true,
"wrap_width": 120,
"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"],
"binary_file_patterns": ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment