mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
9 lines
267 B
Bash
9 lines
267 B
Bash
# default bash autocompletion
|
|
#/etc/bash_completion
|
|
#/usr/local/share/bash-completion/bash_completion
|
|
bash_completion_file="/opt/arch/share/bash-completion/bash_completion"
|
|
if [[ -f "$bash_completion_file" ]]; then
|
|
source "$bash_completion_file"
|
|
fi
|
|
|
|
# vim: ft=sh
|