Skip to content

Commit 3bb0e5d

Browse files
committed
Bash: Source ~/.shell_env
1 parent 92891cf commit 3bb0e5d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.bashrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,13 @@ else
155155
echo "* ${SHELL_WSL_FILE} is missing"
156156
fi
157157
# }}}
158+
159+
############################## Local env ##############################
160+
# File to source for the user's local environemnt.
161+
# {{{
162+
SHELL_ENV_FILE=~/.shell_env
163+
if [[ -f ${SHELL_ENV_FILE} ]]; then
164+
# shellcheck source=/dev/null
165+
source "${SHELL_ENV_FILE}"
166+
fi
167+
# }}}

0 commit comments

Comments
 (0)