dotfiles/init/50_vim.sh

9 lines
172 B
Bash

# Backups, swaps and undos are stored here.
mkdir -p $DOTFILES/caches/vim
# Download Vim plugins.
if [[ "$(type -P vim)" ]]; then
vim +PlugUpgrade +PlugUpdate +qall
fi