From 182c6c70444b610fd45702127d423326330cbaf7 Mon Sep 17 00:00:00 2001 From: James Dixon Date: Tue, 4 Mar 2025 19:19:38 -0500 Subject: [PATCH] source local env in zsh as well --- config/zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index 1c893d9..a040f90 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -24,6 +24,9 @@ export HISTFILE=~/.zsh_history export HISTSIZE=999999999 export SAVEHIST=$HISTSIZE +# source (overwrite) local env variables +[ -r "$HOME/.local/.env" ] && source "$HOME/.local/.env" + # * * * * * * * * * # Shell Options * # * * * * * * * * *