Bootstrap packer installs with new neovim config

This commit is contained in:
ViViDboarder 2021-12-16 21:29:50 -08:00
parent 07ca6b6ddf
commit b1fa9733ef
1 changed files with 3 additions and 1 deletions

View File

@ -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