From d45bebc103ed2142c8a31ac1f0abf84734bfc803 Mon Sep 17 00:00:00 2001 From: Jono Targett Date: Thu, 13 Jan 2022 18:11:50 +1030 Subject: [PATCH] Make vim auto-update plugins on install --- install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install b/install index 3b1759b..10d5c10 100755 --- a/install +++ b/install @@ -22,6 +22,11 @@ function symlink() { done } +rm -rf ./.vim/plugged + backup symlink +# Make vim update the plugins before we ever start it +vim -nN -c "PlugUpdate" -c q +