mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-10 00:59:38 +00:00
Andrei Jiroh Halili
b0ee16d81f
Next, I'll import host-specifics then later this afternoon. Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
9 lines
171 B
Bash
9 lines
171 B
Bash
# if running bash
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
fi
|
|
|
|
source "$HOME/.env"
|