9 lines
193 B
Plaintext
9 lines
193 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "Updating/cleaning Nvim plugins."
|
||
|
|
||
|
source $XDG_CONFIG_HOME/nvim/init.vim
|
||
|
|
||
|
# Thanks for greywh in #vim for this tip
|
||
|
nvim -e -c ':PlugInstall' -c ':PlugClean' -c ':qa!'
|