From c9ebf2cfc68adee13fcd720c534119e431062ced Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Thu, 28 Jul 2022 17:12:40 +0200 Subject: Add config system for bash --- .bashrc | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.bashrc') diff --git a/.bashrc b/.bashrc index 8589f82..6f232e9 100644 --- a/.bashrc +++ b/.bashrc @@ -8,6 +8,11 @@ else DOTFILEBASE="/home/jonas/dotfiles" fi +source "$DOTFILEBASE/config.default" +if [ -f "$HOME/.files.config" ]; then + source "$HOME/.files.config" +fi + for f in $DOTFILEBASE/bash/*.bash; do source $f done -- cgit v1.2.3