Clone this repo to ~/.config/bashrcand add this snippet to your ~/.(bashrc|zprofile|profile) file:
for file in ~/.config/bashrc/*.sh; do
[[ -r $file ]] && . $file
done
unset fileIn short, it iterates through every script with a .sh extension on ~/.config/bashrc. If it is readable, then it is sourced as well.