Skip to content

Instantly share code, notes, and snippets.

@pawl
Last active November 11, 2021 02:16
Show Gist options
  • Save pawl/47e76bfff8d7d3b77edd to your computer and use it in GitHub Desktop.
Save pawl/47e76bfff8d7d3b77edd to your computer and use it in GitHub Desktop.
My Sublime "Settings - User" File
{
"pep8_max_line_length": 120,
"python_interpreter": "python3",
"display_signatures": false
}
{
"auto_complete": false,
"binary_file_patterns": [
"*.dds",
"*.eot",
"*.gif",
"*.ico",
"*.jar",
"*.jpeg",
"*.jpg",
"*.pdf",
"*.png",
"*.swf",
"*.tga",
"*.ttf",
"*.zip",
".shards/**",
"node_modules/**"
],
"caret_style": "solid",
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".DS_Store",
"*.pid",
"*.pyc"
],
"find_selected_text": true,
"fold_buttons": false,
"folder_exclude_patterns":
[
".git",
"__pycache__",
"env",
"env3",
"node_modules"
],
"font_options":
[
"subpixel_antialias",
"no_bold"
],
"font_size": 15,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage",
],
"index_exclude_patterns": [
"*.log",
"vendor/*",
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"node_modules/**",
"bower_components/**",
"tmp/**",
"dist/**",
"venv/*",
"*.min.css",
"*.min.js"
],
"isort.sort_on_save": false,
"line_padding_bottom": 0,
"line_padding_top": 0,
"rulers":
[
79,
120
],
"scroll_past_end": false,
"shift_tab_unindent": true,
"show_full_path": true,
"show_minimap": false,
"tab_size": 4,
"theme": "Soda Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": false,
"wide_caret": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment