Load environment variable file (recently separated out)

This commit is contained in:
John Mertz 2024-01-31 22:36:08 -07:00
parent 8e9606ec49
commit a7e2cbfad9
1 changed files with 4 additions and 0 deletions

View File

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