Updated dotenv for VIM

This commit is contained in:
2021-12-09 00:45:58 -08:00
parent ef2e932dad
commit d6e95c8b00
7 changed files with 41 additions and 26 deletions

14
dotenv.sh Normal file → Executable file
View File

@ -14,5 +14,17 @@ if [ -f "/etc/arch-release" ]; then
./scripts/install-arch.sh
fi
# Debian set up
if [ -f "/etc/debian_version" ]; then
./scripts/install-debian.sh
fi
# Node JS
./scripts/install-node.sh
source ~/.nvm/nvm.sh
source ~/.nvm/nvm.sh
# Install VIM Settings
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
cp ./scripts/.vimrc ~/.vimrc
vim -c "PlugInstall"