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
.gitconfig Normal file
View File

@@ -0,0 +1,5 @@
[user]
name = Sil Klaasboer
email = silklaasboer@gmail.com
[core]
editor = code --wait

View File

@@ -1,6 +1,8 @@
#!/usr/bin/env bash
. vscode/extensions.sh
# Install fonts for zsh
echo "Hello World"
export TESTENV=69
apt get fzf tmux zsh neovim
apt update
apt-get install fzf tmux zsh neovim

10
vscode/extensions.sh Normal file
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