Skip to content

Instantly share code, notes, and snippets.

@brettkromkamp
Last active May 6, 2024 17:58
Show Gist options
  • Save brettkromkamp/abee1253aed2fe4020137b1923ea4019 to your computer and use it in GitHub Desktop.
Save brettkromkamp/abee1253aed2fe4020137b1923ea4019 to your computer and use it in GitHub Desktop.
Visual Studio Code user settings
{
"editor.fontSize": 20,
"workbench.colorTheme": "Solarized Dark",
"editor.fontLigatures": true,
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace",
"editor.formatOnSave": true,
"workbench.tree.indent": 16,
"workbench.tree.renderIndentGuides": "always",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.pyc": {
"when": "$(basename).py"
},
"**/__pycache__": true,
"**/__init__.py": true
},
"black-formatter.args": [
"--line-length",
"119"
],
"editor.minimap.scale": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment