Created
April 10, 2018 06:55
-
-
Save kogent/a7b3658d7b611d78823e27b68214f1da to your computer and use it in GitHub Desktop.
vscode settings
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
{ | |
"files.trimTrailingWhitespace": true, | |
"files.associations": { | |
"**/defaults/**/*": "ansible-advanced", | |
"**/tasks/**/*.yml" : "ansible-advanced", | |
"**/handler/*.yml" : "ansible-advanced", | |
"**/*_vars/**/*.yml" : "ansible-advanced", | |
"**/roles/**/*.yml" : "ansible-advanced", | |
"**/playbooks/**/*.yml" : "ansible-advanced", | |
"**/*ansible*/**/*.yml" : "ansible-advanced", | |
"**/vars/**/*.yml": "ansible-advanced", | |
"**/inventory/*/*": "ansible-advanced" | |
}, | |
"workbench.iconTheme": "vscode-icons", | |
"terminal.external.osxExec": "iTerm.app", | |
"editor.fontSize": 18, | |
"editor.fontFamily": "Consolas Nerd Font, InconsolataForPowerline Nerd Font, SauceCodePro Nerd Fond", | |
"editor.fontLigatures": true, | |
"editor.tabSize": 2, | |
"workbench.colorTheme": "Default Dark+", | |
"tslint.nodePath": "/usr/local/lib/node_modules", | |
"python.venvPath": "~/.virtualenvs", | |
"python.linting.pylintEnabled": false, | |
"python.linting.pylamaEnabled": true, | |
"python.linting.pylamaArgs": ["--ignore D203,D212,D213,D404,E501,C901"], | |
// "terraform.formatOnSave": true, | |
// Path to the `tflint` config file. | |
// "terraform.lintConfig": null, | |
// "terraform.format.enable": true, | |
"terraform.templateDirectory": "tpl", | |
// Use `terraform-index` (download from: https://github.com/mauve/terraform-index/releases) to get live syntax errors, rename support, go to symbol, and much more... | |
"terraform.indexing": { | |
"enabled": true, | |
"indexerPath": "terraform-index", | |
"liveIndexing": true, | |
"delay": 500 | |
}, | |
// "dash.docset.terraform": [ | |
// "terraform" | |
// ] | |
"[terraform]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2 | |
}, | |
"[markdown]": { | |
"editor.wordWrap": "on", | |
"editor.quickSuggestions": false, | |
"editor.tabSize": 2 | |
}, | |
"window.zoomLevel": 1, | |
"[ansible-advanced]": { | |
"editor.tabSize": 2, | |
}, | |
"dash.docset.ansible-advanced": [ | |
"ansible" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment