mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-19 12:45:34 +00:00
11 lines
204 B
Fish
11 lines
204 B
Fish
#!/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.'
|