Add a script to sync vim files

This commit is contained in:
Michael Campagnaro 2017-06-13 12:25:35 -04:00
parent 2ffcac654c
commit 0b0630101a

8
bin/sync-vim.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
set -e
if [ ! -d "~/.vim" ]; then
echo "Syncing user dictionary" && cp ~/.vim/spell/* ~/.dotfiles/vim/spell/
echo "Syncing user colors" && cp ~/.vim/colors/* ~/.dotfiles/vim/colors/
fi