Add support for gentoo completion

This commit is contained in:
Xavier Logerais 2014-04-09 18:17:59 +02:00
parent b84b30ab12
commit 84fb3829b9

2
bashrc
View File

@ -26,6 +26,8 @@ if [ -d $HOME/.bash/aliases.d ]; then for file in $(ls $HOME/.bash/aliases.d/*);
# Source bash completion definitions
[[ -f /etc/bash-completion ]] && source /etc/bash-completion
[[ -f /etc/profile.d/bash-completion ]] && source /etc/profile.d/bash-completion
[[ -f /etc/profile.d/bash-completion.sh ]] && source /etc/profile.d/bash-completion.sh
if [ -f $HOME/.bash_completion ]; then source $HOME/.bash_completion; fi
if [ -f $HOME/.bash/completion ]; then source $HOME/.bash/completion; fi
if [ -d $HOME/.bash/completion ]; then for file in $(ls $HOME/.bash/completion/*); do source $file; done; fi