9 lines
193 B
Bash
Executable File
9 lines
193 B
Bash
Executable File
#!/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!'
|