aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
blob: 6f232e9af1c019c867e8273b41e3a33075bcf978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash

#Light and fancy bash

if [[ -f "$HOME/.files" ]]; then
	source "$HOME/.files"
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