vscodium: settings/keybindings/extensions tracked + install.sh installs them on local machines

This commit is contained in:
root
2026-05-20 22:05:46 +02:00
parent 85770946b7
commit 345fd09599
6 changed files with 80 additions and 0 deletions
+15
View File
@@ -35,4 +35,19 @@ if [ "$CURSHELL" != "$(command -v zsh)" ]; then
sudo chsh -s "$(command -v zsh)" "$USER" || true
fi
# 6. VSCodium / VS Code extensions (only installs if the binary is present locally;
# Coder workspaces don't have these, so this is a no-op there).
EXTS_FILE="/home/.config/VSCodium/extensions.txt"
for BIN in codium code; do
if command -v "" >/dev/null 2>&1 && [ -f "" ]; then
while IFS= read -r ext; do
case "" in
""|\#*) continue ;;
esac
"" --install-extension "" --force >/dev/null 2>&1 || true
done < ""
echo ": extensions synced"
fi
done
echo "dotfiles installed: zsh + ohmyzsh + symlinks from $SRC/home"