diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..b42b7af --- /dev/null +++ b/.gitconfig @@ -0,0 +1,5 @@ +[user] + name = Sil Klaasboer + email = silklaasboer@gmail.com +[core] + editor = code --wait \ No newline at end of file diff --git a/setup.sh b/setup.sh index 6901fe3..e83929f 100755 --- a/setup.sh +++ b/setup.sh @@ -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 diff --git a/vscode/extensions.sh b/vscode/extensions.sh new file mode 100644 index 0000000..c3299fc --- /dev/null +++ b/vscode/extensions.sh @@ -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 \ No newline at end of file