f686d7
#
f686d7
# /etc/zprofile and ~/.zprofile are run for login shells
f686d7
#
f686d7
f686d7
PATH="$PATH:$HOME/bin"
f686d7
export PATH
f686d7
f686d7
_src_etc_profile()
f686d7
{
f686d7
    #  Make /etc/profile happier, and have possible ~/.zshenv options like
f686d7
    # NOMATCH ignored.
f686d7
    #
f686d7
    emulate -L ksh
f686d7
f686d7
    # source profile
f686d7
    if [ -f /etc/profile ]; then
f686d7
	    source /etc/profile
f686d7
    fi
f686d7
}
f686d7
_src_etc_profile
f686d7
f686d7
unset -f _src_etc_profile