From bef5434128704744740722b67045d125d00c4805 Mon Sep 17 00:00:00 2001 From: Lexi Stelter Date: Mon, 28 Jan 2019 11:49:10 +0100 Subject: [PATCH] source .bash_completion.local if exists --- .bash_completion | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bash_completion b/.bash_completion index 6e4033e..12460c3 100644 --- a/.bash_completion +++ b/.bash_completion @@ -3,3 +3,6 @@ # Enable bash completion for dotfiles manager (if installed) [[ -x "$HOME/bin/dotfiles" ]] && source <($HOME/bin/dotfiles bash-completion) +# Include host-specific bash_completion +[[ -f ~/.bash_completion.local ]] && source ~/.bash_completion.local +