mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-01-19 06:56:39 +00:00
10 lines
171 B
Text
10 lines
171 B
Text
|
# 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"
|