1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00
dotfiles/run_onchange_install-neovim-packages.sh

13 lines
265 B
Bash
Raw Normal View History

2022-10-09 15:30:41 +00:00
#!/bin/sh
# Install vim plugins & requirements
if test "$(pip list --user | grep -c 'pynvim')" -ne 1; then
pip install --user pynvim
fi
# Install Neovim plugins
nvim +PlugInstall +qall
# Install Neovim coc extensions
yarn --cwd ~/.config/coc/extensions install