Created
February 14, 2022 14:56
-
-
Save JeffreyVdb/4b4113f171282dbd72b60f1aac53eeec to your computer and use it in GitHub Desktop.
VSCode Settings
This file contains hidden or 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
{ | |
// ======================================= | |
// Editor stlye and default behavior | |
// ======================================= | |
"editor.minimap.enabled": true, | |
"editor.fontFamily": "'Cascadia Code Light', 'Jetbrains Mono'", | |
"editor.fontSize": 13, | |
"editor.lineHeight": 30, | |
"editor.fontLigatures": true, | |
"editor.rulers": [ | |
100, | |
120 | |
], | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"files.eol": "\n", | |
// ======================================= | |
// Golang | |
// ======================================= | |
"go.lintTool": "golangci-lint", | |
"go.autocompleteUnimportedPackages": true, | |
"go.formatTool": "gofumports", | |
"gopls": { | |
"formatting.gofumpt": true | |
}, | |
// ======================================= | |
// File associations | |
// ======================================= | |
"files.associations": { | |
"**/defaults/**/*": "ansible", | |
"**/tasks/**/*.yml": "ansible", | |
"**/handler/*.yml": "ansible", | |
"**/*_vars/**/*.yml": "ansible", | |
"**/roles/**/*.yml": "ansible", | |
"**/playbooks/**/*.yml": "ansible", | |
"**/*ansible*/**/*.yml": "ansible", | |
"**/vars/**/*.yml": "ansible", | |
"**/inventory/*/*": "ansible", | |
"*.hcl": "terraform" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment