dotfiles/vim/install

12 lines
183 B
Plaintext
Raw Normal View History

2018-06-27 16:34:11 +00:00
#!/usr/bin/env bash
echo "Updating/cleaning Vim plugins:"
# Thanks for greywh in #vim for this tip
vim -E -s <<-EOF
:source ~/.vimrc
:PlugInstall
:PlugClean
:qa
EOF