From 128ce35e752fed656d898581b6921711d7e996f7 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Wed, 19 Jun 2019 09:49:53 +0200 Subject: [PATCH] Update neovim also updates vim-plug --- bin/update | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/update b/bin/update index 58a92b9..733e6db 100755 --- a/bin/update +++ b/bin/update @@ -311,6 +311,9 @@ update-neovim() { local start=`date +%s` echo -e "\033[32;1m=== Updating neovim packages ===\033[0m" + curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \ + https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim 2>/dev/null + nvim +PlugUpdate +qall local seconds=$((`date +%s` - $start))