include bash aliases

This commit is contained in:
missytake 2025-09-06 12:19:03 +02:00
parent 3d199154aa
commit c3cbd19336
Signed by: missytake
GPG key ID: 04CC6658320518DF

View file

@ -20,6 +20,9 @@ if [ -n "$BASH_VERSION" ]; then
if [ -f "$HOME/.bashrc" ]; then if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc" . "$HOME/.bashrc"
fi fi
if [ -f "$HOME/.bash_aliases" ]; then
. "$HOME/.bash_aliases"
fi
fi fi
# set PATH so it includes user's private bin if it exists # set PATH so it includes user's private bin if it exists