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>
This commit is contained in:
Andrei Jiroh Halili 2023-01-06 01:22:50 +08:00
parent ec76f58b37
commit b0ee16d81f
No known key found for this signature in database
GPG key ID: 67BFC91B3DA12BE8
6 changed files with 144 additions and 0 deletions

9
.profile Normal file
View file

@ -0,0 +1,9 @@
# 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"