From 44e07c07d71cd196d6041ef4ef4c69cc2a795649 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 31 Aug 2016 08:12:22 +0200 Subject: [PATCH] allow ~/.zprofile.local --- zprofile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/zprofile b/zprofile index adc18ab..a992d21 100644 --- a/zprofile +++ b/zprofile @@ -13,9 +13,12 @@ if [ -s "$HOME/.rbenv/bin/rbenv" ] ; then eval "$(rbenv init -)" fi -######################## +# in case there are local settings needed +if [ -s "$HOME/.zprofile.local" ] ; then + source $HOME/.zprofile.local +fi + # Dist related settings -######################## case $OSTYPE in "darwin14.0"|"darwin15.0" ) export PATH="$(brew --prefix coreutils)/libexec/gnubin:/usr/local/bin:$PATH"