mirror of
https://github.com/alrayyes/dotfiles/
synced 2023-11-14 15:56:30 +00:00
13 lines
265 B
Bash
13 lines
265 B
Bash
|
#!/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
|