auto install vscode extension
This commit is contained in:
5
.gitconfig
Normal file
5
.gitconfig
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[user]
|
||||||
|
name = Sil Klaasboer
|
||||||
|
email = silklaasboer@gmail.com
|
||||||
|
[core]
|
||||||
|
editor = code --wait
|
||||||
4
setup.sh
4
setup.sh
@@ -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
vscode/extensions.sh
Normal file
10
vscode/extensions.sh
Normal 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
|
||||||
Reference in New Issue
Block a user