Skip to content

Instantly share code, notes, and snippets.

@derekli66
Last active June 29, 2018 23:28
Show Gist options
  • Save derekli66/38c944693148c30db4360fbbc64baf0b to your computer and use it in GitHub Desktop.
Save derekli66/38c944693148c30db4360fbbc64baf0b to your computer and use it in GitHub Desktop.
Visual Studio Code Settings for Python
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 15,
"editor.fontFamily": "'Droid Sans Mono Slashed for Powerline'",
"editor.cursorStyle": "block",
"workbench.iconTheme": "vs-seti",
"editor.minimap.enabled": true,
"workbench.colorTheme": "Dracula",
"workbench.startupEditor": "none",
"python.pythonPath": "python3",
"python.linting.enabled": true,
"python.linting.pylintPath": "/usr/local/bin/pylint",
"python.formatting.yapfPath": "/usr/local/bin/yapf",
"editor.formatOnSave": true,
"python.formatting.provider": "yapf",
"python.formatting.autopep8Path": "/usr/local/bin/autopep8",
"[python]": {
"editor.insertSpaces": true,
"editor.tabSize": 4
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment