Update .scripts/install_base.sh
This commit is contained in:
parent
f92dd02d05
commit
b79846ecfa
|
@ -45,6 +45,15 @@ else
|
|||
ssh-add ~/.ssh/id_ed25519
|
||||
fi
|
||||
|
||||
## Neovim
|
||||
if [ ! -f ~/.vim/autoload/plug.vim ]; then
|
||||
echo "Installing vim-plug"
|
||||
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
else
|
||||
echo "vim-plug already installed"
|
||||
fi
|
||||
|
||||
|
||||
## Add user to useful groups
|
||||
sudo usermod -aG wheel,input,audio,video,lp v
|
||||
|
||||
|
|
Loading…
Reference in a new issue