source .bash_completion.local if exists

This commit is contained in:
Lexi Stelter 2019-01-28 11:49:10 +01:00
parent c2a490567c
commit bef5434128
1 changed files with 3 additions and 0 deletions

View File

@ -3,3 +3,6 @@
# Enable bash completion for dotfiles manager (if installed) # Enable bash completion for dotfiles manager (if installed)
[[ -x "$HOME/bin/dotfiles" ]] && source <($HOME/bin/dotfiles bash-completion) [[ -x "$HOME/bin/dotfiles" ]] && source <($HOME/bin/dotfiles bash-completion)
# Include host-specific bash_completion
[[ -f ~/.bash_completion.local ]] && source ~/.bash_completion.local