mirror of
				https://github.com/mitchell/dotfiles.git
				synced 2025-11-03 21:25:26 +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.'
 |