9 lines
169 B
Bash
Executable File
9 lines
169 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Updating/cleaning Vim plugins."
|
|
|
|
source ~/.vimrc
|
|
|
|
# Thanks for greywh in #vim for this tip
|
|
vim -e -c ':PlugInstall' -c ':PlugClean' -c ':qa!'
|