2019-01-05 02:50:50 +01:00
|
|
|
# ~/.bash_completion - Custom bash auto completions
|
|
|
|
|
|
|
|
|
|
# Enable bash completion for dotfiles manager (if installed)
|
2019-01-11 02:15:40 +01:00
|
|
|
[[ -x "$HOME/bin/dotfiles" ]] && source <($HOME/bin/dotfiles bash-completion)
|
2019-01-05 02:50:50 +01:00
|
|
|
|
2019-01-28 11:49:10 +01:00
|
|
|
# Include host-specific bash_completion
|
|
|
|
|
[[ -f ~/.bash_completion.local ]] && source ~/.bash_completion.local
|
|
|
|
|
|