diff --git a/bashrc b/bashrc index 875f4e0..1367abb 100644 --- a/bashrc +++ b/bashrc @@ -111,3 +111,8 @@ fi if [ -d ~/.config/dotfiles/bin ]; then export PATH=~/.config/dotfiles/bin:$PATH fi + +# Source extra config if any +if [ -f ~/.config/dotfiles/bash/extraconfig.bash ]; then + source ~/.config/dotfiles/bash/extraconfig.bash +fi