Source optional local settings

This commit is contained in:
2022-01-25 17:15:48 +01:00
parent 715d630ff7
commit e3a67128fa

View File

@@ -4,3 +4,8 @@
if [ -f "$HOME/.bashrc.kuba" ]; then if [ -f "$HOME/.bashrc.kuba" ]; then
. "$HOME/.bashrc.kuba" . "$HOME/.bashrc.kuba"
fi fi
# Settings not included in dotfiles repo
if [ -f "$HOME/.bashrc.local" ]; then
. "$HOME/.bashrc.local"
fi