Support local zshenv

This commit is contained in:
Daniel Lynn 2021-07-20 10:55:24 -05:00
parent e84874ee40
commit 5dbb5ec617
Signed by: daniel
GPG Key ID: 28496A140E180A9D

6
zshenv
View File

@ -3,4 +3,8 @@ export GPG_TTY=$(tty)
fpath+=(~/.zsh/completions)
. "$HOME/.cargo/env"
# Setup cargo
[[ ! -f ~/.cargo/env ]] || source ~/.cargo/env
# Source machine-specific environment
[[ ! -f ~/.zshenv.local ]] || source ~/.zshenv.local