The `.zprofile` file is sourced by ZSH when the shell is run as a login shell. The `.zprofile.local` file, if it exists, is sourced by the main `.zprofile` script, and is the best place for unversioned per-machine changes.
7 lines
136 B
Bash
7 lines
136 B
Bash
typeset -U path
|
|
path[1,0]=~/.local/bin
|
|
|
|
if [[ -r ${ZDOTDIR:-${HOME}}/.zprofile.local ]]; then
|
|
. ${ZDOTDIR:-${HOME}}/.zprofile.local
|
|
fi
|