My VSCode Settings
{ | |
"python.pythonPath": "/Users/Mardix/.virtualenvs/${workspaceRootFolderName}/bin/python" | |
} |
// Place your settings in this file to overwrite the default settings | |
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/*.pyc": true, | |
"*.pyc": true | |
}, | |
"workbench.iconTheme": "vscode-icons", | |
"files.autoSave": "afterDelay", | |
"window.openFilesInNewWindow": "on", | |
"window.openFoldersInNewWindow": "on", | |
"window.reopenFolders": "all", | |
"terminal.integrated.shellArgs.osx": [ | |
"-l" | |
], | |
"python.linting.enabled": false, | |
"python.linting.pylintEnabled": false, | |
"editor.rulers": [ | |
120 | |
], | |
"editor.fontSize": 16, | |
"workbench.sideBar.location": "right", | |
"workbench.activityBar.visible": false, | |
"workbench.statusBar.visible": false, | |
"workbench.colorTheme": "Kary Foundation - Dark", | |
"files.autoSaveDelay": 15000 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment