mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-04-03 18:24:15 +00:00
Also in this commit: * Update shellrc files for bash for compat with this. I might work on adding checks for oh-my-posh later on. Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
12 lines
279 B
Bash
12 lines
279 B
Bash
#!/usr/bin/env bash
|
|
|
|
export HOST_SPECIFIC_BASHRC_PATH="$HOME/.config/$HOSTNAME.bashrc"
|
|
|
|
# Stage 0: Source dotenv stuff from homedir
|
|
source "$HOME/.env"
|
|
if [[ -f "$HOME/.env.local" ]]; then
|
|
source "$HOME/.env.local"
|
|
export LOCAL_DOTENV_LOADED=true
|
|
fi
|
|
|
|
source "$HOME/.profile"
|