From 3b326ec390192859fb4963a1e5f0fb6e8a87752d Mon Sep 17 00:00:00 2001 From: Daniel Lynn Date: Wed, 14 Sep 2022 13:01:57 -0500 Subject: [PATCH] Source local env file --- zshenv | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshenv b/zshenv index e529b80..7917b55 100644 --- a/zshenv +++ b/zshenv @@ -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"