Skip to content

Instantly share code, notes, and snippets.

@daryltucker
Last active May 28, 2019 21:34
Show Gist options
  • Save daryltucker/74e28400f0d53011d2ed0f5374a5272b to your computer and use it in GitHub Desktop.
Save daryltucker/74e28400f0d53011d2ed0f5374a5272b to your computer and use it in GitHub Desktop.
Sublime Text 3 User Preferences
{
"added_words": [],
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_triggers":
[
{
"characters": ".",
"selector": "source.python - string - comment - constant.numeric"
}
],
"auto_complete_with_fields": true,
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"*.log",
"*.csv",
"*.txt",
"*.docx",
"*.gz",
"*.xz",
"*.zip"
],
"bold_folder_labels": true,
"complete_parameters": true,
"default_encoding": "UTF-8",
"draw_minimap_border": true,
"draw_white_space": "all",
"enable_tab_scrolling": true,
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".DS_Store",
"*.pid",
"*.pyc",
"*.docx",
"*.dll",
"*.obj",
"*.o",
"*.so",
".DS_Store",
"*.psd",
".git/*"
],
"find_selected_text": true,
"folder_exclude_patterns":
[
".modules",
".svn",
".git",
".hg",
"CVS",
"__pycache__",
"_old",
"node_modules",
"pdfjs",
"bower_components",
".tmp",
"dist",
".sass-cache",
".env",
"app/vendor"
],
"font_face": "Droid Sans Mono",
"font_options":
[
"subpixel_antialias",
"no_bold",
"no_italic"
],
"font_size": 10,
"highlight_line": true,
"highlight_modified_tabs": true,
"hot_exit": false,
"ignored_packages":
[
"Markdown",
"Vintage"
],
"line_padding_bottom": 0,
"line_padding_top": 0,
"match_tags": true,
"numix_xsmall_tabs": true,
"pep8": true,
"pep8_ignore":
[
"E501",
"E402",
"E303"
],
"python_interpreter": "/usr/bin/python2",
"remember_open_files": false,
"remove_trailing_whitespace_on_save": true,
"rulers":
[
79,
119,
200
],
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true,
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment