Skip to content

Instantly share code, notes, and snippets.

@Guitaricet
Created February 12, 2020 22:19
Show Gist options
  • Save Guitaricet/a98b3fee1da96e3083bf0266be74ba89 to your computer and use it in GitHub Desktop.
Save Guitaricet/a98b3fee1da96e3083bf0266be74ba89 to your computer and use it in GitHub Desktop.
vscode settings
{
"editor.wordBasedSuggestions": true, // set to false if using tabnine
"git.confirmSync": false,
"window.zoomLevel": 1,
// "explorer.autoReveal": false,
// "python.analysis.downloadChannel": "daily",
"python.pythonPath": "/usr/local/bin/python3",
"python.linting.flake8Args": [
"--max-line-length=120",
"--ignore E128"
],
"files.watcherExclude": {
"**/env/**": true,
"**/.git/objects/**": true,
"**/node_modules/**": true,
"**/tmp/**": true
},
"git.autofetch": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.dataScience.sendSelectionToInteractiveWindow": true,
"editor.largeFileOptimizations": false,
"editor.minimap.enabled": false,
"gitlens.advanced.telemetry.enabled": false,
"gitlens.menus": {
"editorGroup": {
"blame": false,
"compare": false
},
},
"workbench.colorTheme": "Default Light+",
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.value": 5,
"diffEditor.ignoreTrimWhitespace": false,
"python.linting.flake8CategorySeverity.E": "Warning",
"editor.fontFamily": "Monoid",
"editor.fontSize": 11,
"editor.fontLigatures": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment