dotfiles/bin/sync-vim.sh

9 lines
203 B
Bash
Raw Normal View History

2017-06-13 16:25:35 +00:00
#!/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