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"