dotfiles/bin/sync-vim

12 lines
402 B
Plaintext
Raw Normal View History

2017-06-13 16:25:35 +00:00
#!/bin/bash
set -e
if [ ! -d "~/.vim" ]; then
2019-12-31 05:34:16 +00:00
echo "Syncing user dictionary" && cp -r ~/.vim/spell ~/.dotfiles/vim/
echo "Syncing user colors" && cp -r ~/.vim/colors ~/.dotfiles/vim/
echo "Syncing after directory" && cp -r ~/.vim/after ~/.dotfiles/vim/
2017-07-26 16:06:00 +00:00
echo "Syncing templates" && cp -r ~/.vim/templates ~/.dotfiles/vim/
2019-12-31 05:34:16 +00:00
echo "Syncing ftdetect" && cp -r ~/.vim/ftdetect ~/.dotfiles/vim/
2017-06-13 16:25:35 +00:00
fi