From ffcb53f6e25a87dffc52aa95f8c35d70b1d2c2a1 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Mon, 8 Apr 2024 21:42:21 -0400 Subject: [PATCH] Update .zshenv to source local env if it exists --- zsh/config/.zshenv | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/config/.zshenv b/zsh/config/.zshenv index 66ff697..4112a82 100755 --- a/zsh/config/.zshenv +++ b/zsh/config/.zshenv @@ -100,3 +100,5 @@ export GPG_TTY=$(tty) # Starship Prompt export STARSHIP_CONFIG="$XDG_CONFIG_HOME/starship/starship.toml" + +[ -f "$LOCAL_ENV" ] && source "$LOCAL_ENV"