fix(bash): rollback short bashrc import (#19)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/19
This commit is contained in:
Victor Westerlund 2025-05-15 13:01:27 +00:00
parent 513d743f2f
commit 6b79c5648c

View file

@ -1,5 +1,7 @@
# Import .bashrc for to unfuck login shells
if [ -f ~/.bashrc ] && . ~/.bashrc
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# Export GPG_TTY for signing stuff with gpg
export GPG_TTY=$(tty)