mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-19 12:45:34 +00:00
13 lines
250 B
Fish
Executable file
13 lines
250 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
echo 'Syncing configuration files to your home dir...'
|
|
|
|
if ! test -e ~/.config; mkdir ~/.config; end
|
|
|
|
rsync -aP ./.config/fish ~/.config/
|
|
rsync -aP ./.gitconfig ~/
|
|
rsync -aP ./.tmux* ~/
|
|
rsync -aP ./.vim* ~/
|
|
|
|
echo 'Done syncing.'
|