feat(vscodium): add extensions.txt and a script to install the extensions from the txt

This commit is contained in:
Sergio Laín 2024-01-16 11:24:15 +01:00
parent 04b78eb79f
commit a41548b103
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,15 @@
alefragnani.project-manager
amodio.toggle-excluded-files
asvetliakov.vscode-neovim
BrandonKirbyson.vscode-animations
Catppuccin.catppuccin-vsc
Codeium.codeium
drcika.apc-extension
golang.go
jrebocho.vscode-random
rafamel.subtle-brackets
rust-lang.rust-analyzer
streetsidesoftware.code-spell-checker
thang-nm.catppuccin-perfect-icons
usernamehw.errorlens
yandeu.five-server

View file

@ -0,0 +1,5 @@
#!/bin/bash
cat ~/.config/VSCodium/User/extensions.txt | while read extension || [[ -n $extension ]]; do
vscodium --install-extension "$extension" --force
done