From b1fa9733ef38a7fa70b98e68d929c92c69ec9ccf Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Thu, 16 Dec 2021 21:29:50 -0800 Subject: [PATCH] Bootstrap packer installs with new neovim config --- vim-sync-append.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vim-sync-append.sh b/vim-sync-append.sh index cb2f6c8..69177c4 100755 --- a/vim-sync-append.sh +++ b/vim-sync-append.sh @@ -25,7 +25,9 @@ mkdir -p "${XDG_CONFIG_HOME:=$HOME/.config}" echo "Install all bundles" if hash nvim 2>/dev/null; then echo "If using Neovim, install the python modules in your environment" - nvim +PlugInstall +qall + nvim --headless -c PlugInstall -c qall + nvim --headless -c "autocmd User PackerComplete quitall" -c "PackerBootstrap" + nvim --headless -c "TSUpdateSync" -c "quitall" fi if hash vim 2>/dev/null; then vim +PlugInstall +qall