From eddae2e160a3a07464f8ad516ae0fb67b9a9afe6 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Tue, 9 Jun 2020 00:58:09 -0500 Subject: [PATCH] install: headless nvim --- install/install-vim-plugins.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/install-vim-plugins.sh b/install/install-vim-plugins.sh index b94ce30..3e9fb2f 100755 --- a/install/install-vim-plugins.sh +++ b/install/install-vim-plugins.sh @@ -7,12 +7,12 @@ VIM_PLUG="$HOME/.local/share/nvim/site/autoload/plug.vim" if [ -f "$VIM_PLUG" ]; then echo "Updating vim plugin manager..." echo "Updating vim plugins..." - nvim +PlugUpgrade +PlugUpdate +qall + nvim --headless +PlugUpgrade +PlugUpdate +qall else echo "Installing vim plugin manager..." curl -fsSL -o "$VIM_PLUG" --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim echo "Installing vim plugins..." - nvim +PlugInstall +qall + nvim --headless +PlugInstall +qall fi echo