Rename some scripts

This commit is contained in:
2019-09-09 14:14:08 -04:00
parent 362e838895
commit 69bf64ea20
3 changed files with 0 additions and 80 deletions

10
bin/sync-vim Normal file
View File

@@ -0,0 +1,10 @@
#!/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/
echo "Syncing after directory" && cp -r ~/.vim/after ~/.dotfiles/vim/
echo "Syncing templates" && cp -r ~/.vim/templates ~/.dotfiles/vim/
fi