Changed prompt, added ability to customize by sourcing zshrc if it

exists
This commit is contained in:
2013-12-23 07:34:55 -08:00
parent b257630396
commit bc9df24067
4 changed files with 16 additions and 1 deletions

9
.zshrc
View File

@@ -85,3 +85,12 @@ function follow() {
pushd `filepath $1`
fi
}
# Source per-instance customizations if they exist
if [ -e $HOME/.zcustom/zshrc ]; then
source $HOME/.zcustom/zshrc
fi
# Remove duplicate entries in the PATH
typeset -U path