9 lines
303 B
Bash
9 lines
303 B
Bash
# ~/.bash_completion - Custom bash auto completions
|
|
|
|
# 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
|
|
|