diff options
author | Karel Kočí <cynerd@email.cz> | 2016-08-30 19:40:52 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-08-30 19:40:52 +0200 |
commit | 5e042f91eb9a47b376e7906a2956506233411d38 (patch) | |
tree | 1346852dc1fed35f8251c8ddeeed6bed3223d426 /install | |
parent | 1df620f633503016c5d7fe05ba051e5c553ca0e4 (diff) | |
download | myconfigs-5e042f91eb9a47b376e7906a2956506233411d38.tar.gz myconfigs-5e042f91eb9a47b376e7906a2956506233411d38.tar.bz2 myconfigs-5e042f91eb9a47b376e7906a2956506233411d38.zip |
Add zsh configuration and share it with bash
Diffstat (limited to 'install')
-rwxr-xr-x | install | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -51,11 +51,19 @@ inst() { read -p "Install Bashrc? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst bashrc ~/.bashrc + inst shellrc ~/.shellrc +fi + +read -p "Install zshrc? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst zshrc ~/.zshrc + inst shellrc ~/.shellrc fi read -p "Install GIT configuration? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst gitconfig ~/.gitconfig + inst local/.git-prompt.sh ~/.local/ fi read -p "Install VIM scripts? (Y/n) " |