diff options
Diffstat (limited to 'setupDEB.sh')
-rwxr-xr-x | setupDEB.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/setupDEB.sh b/setupDEB.sh new file mode 100755 index 00000000..4b743fb3 --- /dev/null +++ b/setupDEB.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# installing neovim +sudo apt install -y neovim + +# needed to pull installer +sudo apt install -y curl + +# used for clipboard +sudo apt install -y xsel + +# pul sown installer +curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh + +# run installer +sh ./installer.sh ~/.cache/dein |