Updating vscode settinsg and extensions.

This commit is contained in:
Joseph Hanson 2023-09-21 16:24:33 -05:00
parent 46aadf3038
commit cb75b51230
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
2 changed files with 12 additions and 5 deletions

10
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,10 @@
{
"recommendations": [
"mikestead.dotenv",
"redhat.ansible",
"redhat.vscode-yaml",
"signageos.signageos-vscode-sops",
"pkief.material-icon-theme",
"ms-vscode-remote.remote-ssh"
]
}

View file

@ -5,7 +5,6 @@
"**/ansible/**/*.yaml": "ansible",
"**/ansible/**/*.sops.yaml": "yaml",
"**/ansible/**/inventory/**/*.yaml": "yaml",
"**/terraform/**/*.tf": "terraform",
"**/kubernetes/**/*.sops.toml": "plaintext"
},
"material-icon-theme.folders.associations": {
@ -14,7 +13,6 @@
"charts": "kubernetes",
"hack": "scripts",
"repositories": "database",
"terraforms": "terraform",
"vars": "other",
// namespaces
"cert-manager": "guard",
@ -27,8 +25,7 @@
"yaml.schemaStore.enable": true,
"yaml.schemas": {
"ansible": "ansible/**/*.yaml",
"kubernetes": "kubernetes/**/*.yaml",
"schemaservice://combinedschema/ansible": "file:///home/jahanson/projects/k3s-ops/ansible/kubernetes/inventory/hosts.yaml"
"kubernetes": "kubernetes/**/*.yaml"
},
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
@ -45,5 +42,5 @@
"files.trimTrailingWhitespace": true,
"ansible.python.interpreterPath": "/usr/bin/python3",
"sops.defaults.ageKeyFile": "age.key",
"ansible.validation.lint.path": "~/projects/k3s-ops/.venv/bin/ansible-lint"
"ansible.validation.lint.path": "~/projects/valinor/.venv/bin/ansible-lint"
}