Last active
October 10, 2020 17:49
-
-
Save yozhsh/78b5978b352d2519cc03632735657abf to your computer and use it in GitHub Desktop.
My VScode basic workspace config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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