Skip to content

Instantly share code, notes, and snippets.

@fredrikaverpil
Last active November 25, 2016 12:35
Show Gist options
  • Save fredrikaverpil/00241152802dfa1a2e19638e1ad3e344 to your computer and use it in GitHub Desktop.
Save fredrikaverpil/00241152802dfa1a2e19638e1ad3e344 to your computer and use it in GitHub Desktop.
vscode settings
// Place your settings in this file to overwrite the default settings
{
// Python, virtualenv (for workspace / project settings)
"python.pythonPath": "${workspaceRoot}/../../virtualenvs/vscode_base",
// "python.pythonPath": "${workspaceRoot}/../../virtualenvs/${workspaceRootFolderName}",
// "python.pythonPath": "${workspaceRoot}/.vscode/venv",
// Python, general
"python.linting.pylintEnabled": true,
"python.linting.flake8Enabled": false,
"python.linting.pep8Enabled": true,
"python.linting.lintOnTextChange": true,
"python.formatting.provider": "autopep8",
// Editor
"editor.rulers": [72, 79],
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.roundedSelection": false,
// Explorer
"explorer.openEditors.visible": 0,
// Terminal
// "terminal.integrated.shell.windows": "C:\\WINDOWS\\system32\\cmd.exe",
// "terminal.integrated.shell.windows": "C:/Windows/sysnative/WindowsPowerShell/v1.0/powershell.exe",
// Files
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/__pycache__": true,
"**/**/*.pyc": true
},
// Extensions
"trailing-spaces.trimOnSave": true,
"projectManager.openInNewWindow": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment