dotfiles/vim/install

12 lines
186 B
Plaintext
Raw Normal View History

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