dotfiles/sync

13 lines
250 B
Plaintext
Raw Permalink Normal View History

2019-08-15 05:50:59 +00:00
#!/usr/bin/env fish
echo 'Syncing configuration files to your home dir...'
if ! test -e ~/.config; mkdir ~/.config; end
2019-08-15 05:50:59 +00:00
rsync -aP ./.config/fish ~/.config/
rsync -aP ./.gitconfig ~/
rsync -aP ./.tmux* ~/
rsync -aP ./.vim* ~/
echo 'Done syncing.'