Skip to content

Instantly share code, notes, and snippets.

@yozhsh
Last active October 10, 2020 17:49
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 yozhsh/78b5978b352d2519cc03632735657abf to your computer and use it in GitHub Desktop.
Save yozhsh/78b5978b352d2519cc03632735657abf to your computer and use it in GitHub Desktop.
My VScode basic workspace config
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.venv": true,
"**/.env": true,
"**/.idea": true,
"**/.github": true,
"**/__pycache__/": true,
"**/build/": true,
"**/*.pyc": true
},
"python.venvPath": "${workspaceFolder}/.venv",
"python.terminal.activateEnvironment": true,
"python.autoComplete.addBrackets": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment