Created
December 21, 2017 13:57
-
-
Save SergioGeeK7/9ad7f7d609308b7f38c0d447f0205e44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| PWD=`pwd` | |
| # Copy config files | |
| ## Oh my zsh | |
| ln -sf $PWD/.zshrc ~/.zshrc | |
| ## Tmux | |
| git clone https://github.com/tmux-plugins/tpm $PWD/.tmux/plugins/tpm | |
| ln -sf $PWD/.tmux.conf ~/.tmux.conf | |
| ## Vim | |
| ln -sf $PWD/.vimrc ~/.vimrc | |
| ## Tmuxp | |
| mkdir -p ~/.tmuxp | |
| ln -sf $PWD/tumblbug-backend.yaml ~/.tmuxp/tumblbug-backend.yaml # tumblbug backend | |
| ## Hyper | |
| ln -sf $PWD/.hyper.js ~/.hyper.js | |
| # Restart | |
| source ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment