8 lines
195 B
Bash
8 lines
195 B
Bash
|
|
# ~/.bash_completion - Custom bash auto completions
|
||
|
|
|
||
|
|
# Enable bash completion for dotfiles manager (if installed)
|
||
|
|
if command -v dotfiles &>/dev/null; then
|
||
|
|
source <(dotfiles bash-completion)
|
||
|
|
fi
|
||
|
|
|