From e3a67128faea5a45ed9615a7c4f20731823a6774 Mon Sep 17 00:00:00 2001 From: Jakub Fojt Date: Tue, 25 Jan 2022 17:15:48 +0100 Subject: [PATCH] Source optional local settings --- .bashrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bashrc b/.bashrc index 32ec1f3..7d738e6 100644 --- a/.bashrc +++ b/.bashrc @@ -4,3 +4,8 @@ if [ -f "$HOME/.bashrc.kuba" ]; then . "$HOME/.bashrc.kuba" fi + +# Settings not included in dotfiles repo +if [ -f "$HOME/.bashrc.local" ]; then + . "$HOME/.bashrc.local" +fi