aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2016-08-30 19:40:52 +0200
committerKarel Kočí <cynerd@email.cz>2016-08-30 19:40:52 +0200
commit5e042f91eb9a47b376e7906a2956506233411d38 (patch)
tree1346852dc1fed35f8251c8ddeeed6bed3223d426 /install
parent1df620f633503016c5d7fe05ba051e5c553ca0e4 (diff)
downloadmyconfigs-5e042f91eb9a47b376e7906a2956506233411d38.tar.gz
myconfigs-5e042f91eb9a47b376e7906a2956506233411d38.tar.bz2
myconfigs-5e042f91eb9a47b376e7906a2956506233411d38.zip
Add zsh configuration and share it with bash
Diffstat (limited to 'install')
-rwxr-xr-xinstall8
1 files changed, 8 insertions, 0 deletions
diff --git a/install b/install
index dc2300d..fc44fdc 100755
--- a/install
+++ b/install
@@ -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) "