Skip to content

Instantly share code, notes, and snippets.

@kogent
Created April 10, 2018 06:55
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 kogent/a7b3658d7b611d78823e27b68214f1da to your computer and use it in GitHub Desktop.
Save kogent/a7b3658d7b611d78823e27b68214f1da to your computer and use it in GitHub Desktop.
vscode settings
{
"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