From acca17116386bf3502f3cfb65fc38d175e0b7833 Mon Sep 17 00:00:00 2001 From: rtaycher Date: Fri, 8 Oct 2010 06:59:06 -0700 Subject: [PATCH] Added copying of current MANPATH to end of ~/.zshrc in installer. --- tools/install.sh | 3 +++ 1 file changed, 3 insertions(+) mode change 100755 => 100644 tools/install.sh diff --git a/tools/install.sh b/tools/install.sh old mode 100755 new mode 100644 index 6e3872bb9..de1d6d4e6 --- a/tools/install.sh +++ b/tools/install.sh @@ -21,6 +21,9 @@ cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc echo "Copying your current PATH and adding it to the end of ~/.zshrc for you." echo "export PATH=$PATH" >> ~/.zshrc +echo "Copying your current MANPATH and adding it to the end of ~/.zshrc for you." +echo "export MANPATH=$MANPATH" >> ~/.zshrc + echo "Time to change your default shell to zsh!" chsh -s "/usr/bin/env zsh"