aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2022-07-28 17:12:40 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2022-07-28 17:12:40 +0200
commitc9ebf2cfc68adee13fcd720c534119e431062ced (patch)
tree1141a7f661c84bcaa956d1f28ed17794e668604c /.bashrc
parent15fa7050a887066cd8174f8267db5189b7597de4 (diff)
downloaddotfiles-c9ebf2cfc68adee13fcd720c534119e431062ced.tar.gz
Add config system for bash
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc5
1 files changed, 5 insertions, 0 deletions
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