mirror of https://github.com/mitchell/dotfiles.git
11 lines
204 B
Plaintext
11 lines
204 B
Plaintext
|
#!/usr/bin/env fish
|
||
|
|
||
|
echo 'Syncing configuration files to your home dir...'
|
||
|
|
||
|
rsync -aP ./.config/fish ~/.config/
|
||
|
rsync -aP ./.gitconfig ~/
|
||
|
rsync -aP ./.tmux* ~/
|
||
|
rsync -aP ./.vim* ~/
|
||
|
|
||
|
echo 'Done syncing.'
|