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 ###############################################