Source local env file

This commit is contained in:
Daniel Lynn 2022-09-14 13:01:57 -05:00
parent 647eb96381
commit 3b326ec390
Signed by: daniel
GPG Key ID: 655C07B9B3DDC88B

5
zshenv
View File

@ -18,6 +18,11 @@ if (( $+commands[ruby] )); then
[[ -d "$gem_bin_path" ]] && path+=("$gem_bin_path")
fi
# Local environment
if [[ -s ~/.zshenv.local ]]; then
source ~/.zshenv.local
fi
# Setup go paths
if (( $+commands[go] )); then
local go_bin_path="$(go env GOPATH)/bin"