Created
October 25, 2018 19:21
-
-
Save oremj/4c07a6e250d237bc6e51b69dc97fe237 to your computer and use it in GitHub Desktop.
VSCode settings.json
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
{ | |
"python.linting.enabled": false, | |
"python.pythonPath": "/usr/local/bin/python3", | |
"window.zoomLevel": -1, | |
"editor.formatOnSave": true, | |
"vim.neovimPath": "/usr/local/bin/nvim", | |
"workbench.list.openMode": "doubleClick", | |
"files.associations": { | |
"*.jsonnet": "json" | |
}, | |
"editor.renderWhitespace": "all", | |
"git.autofetch": true, | |
"terraform.indexing": { | |
"enabled": true, | |
"liveIndexing": false, | |
"delay": 500, | |
"exclude": [ | |
".terraform/**/*", | |
"**/.terraform/**/*" | |
] | |
}, | |
"python.formatting.provider": "yapf", | |
"python.linting.mypyEnabled": true, | |
"files.autoSave": "afterDelay", | |
"files.trimTrailingWhitespace": true, | |
"breadcrumbs.enabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment