aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
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) "