dotfiles/bash/.bash_profile

7 lines
241 B
Bash
Raw Normal View History

2024-05-19 02:23:03 -04:00
# shellcheck disable=SC1091
2024-05-17 20:46:22 -04:00
[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/environment" ] && . "${XDG_CONFIG_HOME:-$HOME/.config}/shell/environment"
2024-05-19 02:23:03 -04:00
2024-05-19 02:28:54 -04:00
export HISTFILE="$XDG_STATE_HOME/bash/history"
2024-05-17 20:46:22 -04:00
[ -f "$HOME/.bashrc" ] && . "$HOME/.bashrc"