14 lines
		
	
	
		
			281 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			281 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| SCRIPTDIR="${HOME}/code/scriptamanent"
 | |
| 
 | |
| # bash
 | |
| ln -s "${SCRIPTDIR}/.bashrc" "${HOME}"
 | |
| 
 | |
| # tmux
 | |
| ln -s "${SCRIPTDIR}/.tmux.conf" "${HOME}"
 | |
| mkdir -p ~/tmux/plugins
 | |
| git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
 | |
| 
 | |
| # vim
 | |
| ln -s "${SCRIPTDIR}/.vimrc" "${HOME}"
 |