From 8706b403d27dcb0b2553828eab5d1d4ed029b149 Mon Sep 17 00:00:00 2001 From: "M. Oleske" Date: Fri, 31 Mar 2023 13:22:21 -0700 Subject: [PATCH] automate plugin installation --- set-up-new-machine.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/set-up-new-machine.sh b/set-up-new-machine.sh index 9e8e3ee..95203f5 100755 --- a/set-up-new-machine.sh +++ b/set-up-new-machine.sh @@ -88,6 +88,9 @@ sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug. mkdir -p ~/.config/nvim ln -s ~/workspace/capi-workspace/init.vim ~/.config/nvim/init.vim +# automated PlugInstall (from https://github.com/junegunn/vim-plug/wiki/tips#install-plugins-on-the-command-line) +nvim -es -u init.vim -i NONE -c "PlugInstall" -c "qa" + # setup mysql sudo service mysql start sudo service mysql status # might need loop here depending how long status takes