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