Add vscodium artifacts for sync'ing settings and extensions

This commit is contained in:
2025-11-13 13:46:29 -05:00
parent 87c761a4bf
commit f6e49f3610
4 changed files with 70 additions and 0 deletions

18
vscodium/extensions.bash Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
EXTENSIONS=(
"gamunu.opentofu"
"tamasfe.even-better-toml"
"samuelcolvin.jinjahtml"
"yzhang.markdown-all-in-one"
"streetsidesoftware.code-spell-checker"
"github.vscode-github-actions"
"redhat.vscode-yaml"
"ms-python.debugpy"
"ms-python.python"
"detachhead.basedpyright"
)
for ext in "${EXTENSIONS[@]}"; do
codium --install-extension "$ext" --force
done