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