From 2c30321165e03d0ca11e3347999a2e3e5fa60459 Mon Sep 17 00:00:00 2001 From: Cole Maxwell Date: Sat, 14 Feb 2026 10:48:07 -0600 Subject: [PATCH] Add: load $HOME/.secrets --- .zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.zshrc b/.zshrc index 7f04221..0295d9c 100644 --- a/.zshrc +++ b/.zshrc @@ -3,6 +3,11 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]] source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" fi +# Load local environment secrets if the file exists +if [ -f "$HOME/.secrets" ]; then + source "$HOME/.secrets" +fi + ############################################### # Cole's $PATH configs ###############################################