Skip to content

Instantly share code, notes, and snippets.

@dvl
Forked from etrepat/FIle.sublime-settings.json
Last active December 21, 2015 18:09
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 dvl/6345331 to your computer and use it in GitHub Desktop.
Save dvl/6345331 to your computer and use it in GitHub Desktop.
My sublime text options
{
"auto_complete": true,
"auto_complete_delay": 50,
"auto_complete_selector": "source - comment",
"auto_complete_size_limit": 4194304,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
}
],
"color_scheme": "Packages/User/Monokai (SL) (SublimePythonIDE).tmTheme",
"default_encoding": "UTF-8",
"default_line_ending": "lf",
"detect_indentation": true,
"dictionary": "Packages/Dictionaries/Portuguese (Brazilian).dic",
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "ISO-8859-1",
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace",
"*.pid",
"celerybeat-schedule",
".venv"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"__pycache__",
"bower_components",
"node_modules",
"static-root"
],
"font_face": "Source Code Pro",
"font_size": 10,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Markdown",
"Vintage",
"SublimePythonIDE",
"Anaconda"
],
"indent_subsequent_lines": false,
"rulers":
[
79,
99
],
"scroll_speed": 0,
"show_encoding": true,
"show_tab_close_buttons": false,
"spell_check": false,
"tab_completion": false,
"tab_size": 4,
"theme": "Default.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true
}
{
// Places a highlight on tabs with unsaved changes
"highlight_modified_tabs": true,
// Set to true to close windows as soon as the last file is closed, unless
// there's a folder open within the window. This is always enabled on OS X,
// changing it here won't modify the behavior.
"close_windows_when_empty": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment