vscodium: settings/keybindings/extensions tracked + install.sh installs them on local machines
This commit is contained in:
+15
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user