From 2c878b50213af6a1ce27e23c475aeb3aac14ddcb Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 23 Apr 2012 15:03:03 -0700 Subject: [PATCH] Fill in the usual infrastructure for .zprofile --- zprofile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/zprofile b/zprofile index 5c3cefd..cb93fb4 100644 --- a/zprofile +++ b/zprofile @@ -1,5 +1,13 @@ # .zprofile # vim:ft=zsh -# Eryn Wells +# +# Login shell setup +# +# Eryn Wells -source $HOME/.profile +[ -e $HOME/.profile ] && source $HOME/.profile + +# Any ZSH stuff goes here. + +[ -e $HOME/.profile.$SYS ] && source $HOME/.profile.$SYS +[ -e $HOME/.profile.local ] && source $HOME/.profile.local