diff --git a/files/.bashrc b/files/.bashrc index f14c506..c47fe89 100644 --- a/files/.bashrc +++ b/files/.bashrc @@ -62,3 +62,8 @@ if [ -d ~/.fzf ]; then source ~/.fzf/completion.bash source ~/.fzf/key-bindings.bash fi + +# source client specific scripts +if [ -d ~/.client ]; then + for f in ~/.client/.*; do if [[ -f $f ]]; then source $f ; fi; done +fi