From a7e2cbfad99e711cd7a8845cba05e27c03928fc9 Mon Sep 17 00:00:00 2001 From: John Mertz Date: Wed, 31 Jan 2024 22:36:08 -0700 Subject: [PATCH] Load environment variable file (recently separated out) --- bash/bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bash/bashrc b/bash/bashrc index 1b3a7d38c..ebc1d735a 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -45,6 +45,10 @@ fi # Configure PATH source "$HOME/.dotfiles/bash/path" +# Static environment variable exports +if [ -f ${HOME}/.dotfiles/bash/env_exports ]; then + . "${HOME}/.dotfiles/bash/env_exports" +fi # Load aliases if [ -f ${HOME}/.dotfiles/bash/bash_aliases ]; then