Skip to content

Instantly share code, notes, and snippets.

@oremj
Created October 25, 2018 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oremj/4c07a6e250d237bc6e51b69dc97fe237 to your computer and use it in GitHub Desktop.
Save oremj/4c07a6e250d237bc6e51b69dc97fe237 to your computer and use it in GitHub Desktop.
VSCode settings.json
{
"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