✨ feat(vscodium): add extensions.txt and a script to install the extensions from the txt
This commit is contained in:
parent
04b78eb79f
commit
a41548b103
2 changed files with 20 additions and 0 deletions
15
.config/VSCodium/User/extensions.txt
Normal file
15
.config/VSCodium/User/extensions.txt
Normal 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
|
5
.local/bin/installCodiumExtensions
Executable file
5
.local/bin/installCodiumExtensions
Executable 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
|
Loading…
Add table
Reference in a new issue