dotfiles/.profile
Andrei Jiroh Halili b0ee16d81f
feat(bashrc): add global bashrc stuff
Next, I'll import host-specifics then later this afternoon.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
2023-01-06 01:22:50 +08:00

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"