17 lines
		
	
	
		
			463 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			463 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/zsh
 | |
| 
 | |
| # This is where my configurations live
 | |
| REPO=https://git.momodomo.us/nichus/sundry.git
 | |
| 
 | |
| # First we're going to pull my version of the ZPLUG stuff
 | |
| git clone https://github.com/nichus/zplug-fork $HOME/.zplug
 | |
| 
 | |
| mkdir git
 | |
| git clone $REPO git/sundry
 | |
| 
 | |
| install -vd $HOME/.zsh/lib
 | |
| install -v git/sundry/zsh/zshenv $HOME/.zshenv
 | |
| install -v git/sundry/zsh/zshrc $HOME/.zsh/.zshrc
 | |
| install -vt $HOME/.zsh/lib git/sundry/zsh/lib/*
 | |
| ln -vs .zshrc $HOME/.zsh/zshrc
 |