auto install vscode extension

This commit is contained in:
2025-07-16 15:21:33 +02:00
parent 9d160ac433
commit 91d125a7e5
3 changed files with 18 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
[user]
name = Sil Klaasboer
email = silklaasboer@gmail.com
[core]
editor = code --wait
+3 -1
View File
@@ -1,6 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
. vscode/extensions.sh
# Install fonts for zsh # Install fonts for zsh
echo "Hello World" echo "Hello World"
export TESTENV=69 export TESTENV=69
apt get fzf tmux zsh neovim apt update
apt-get install fzf tmux zsh neovim
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
# Visual Studio Code :: Package list
pkglist=(
stuart.unique-window-colors
)
for i in ${pkglist[@]}; do
code --install-extension $i
done