dotfiles/dot_bashrc

25 lines
498 B
Plaintext
Raw Normal View History

2021-04-12 21:56:06 -04:00
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# User specific aliases and functions
2022-05-10 13:58:50 -04:00
if [ -d "$HOME/.config/bash" ]; then
for rc in "$HOME/.config/bash/*"; do
2021-04-13 14:43:04 -04:00
if [ -f "$rc" ]; then
2021-05-11 12:28:44 -04:00
# shellcheck source=/dev/null
2021-04-13 14:43:04 -04:00
. "$rc"
fi
done
2021-04-12 21:56:06 -04:00
fi
unset rc
2021-05-11 12:35:00 -04:00
if which direnv > /dev/null 2>&1 ; then
eval "$(direnv hook bash)"
fi
2021-07-12 10:59:03 -04:00
if which zoxide > /dev/null 2>&1 ; then
eval "$(zoxide init bash)"
# shellcheck disable=SC2139
alias z="$(which zoxide)"
fi
2022-05-10 13:58:50 -04:00