My dotfiles utilizing Chezmoi for management https://www.chezmoi.io/
 
 

7 lines
188 B

#!/usr/bin/env bash
# Install new and remove old plugins
if command -v vim >/dev/null 2>&1; then
echo "Updating Vim plugins"
nvim '+PlugUpdate' '+PlugClean!' '+PlugUpdate' '+qall'
fi