Enable bash-completion by default

This commit is contained in:
Santiago Mola
2025-07-06 19:11:34 +02:00
parent b0beec5c0d
commit 5a8687b386
3 changed files with 6 additions and 2 deletions

View File

@ -5,7 +5,9 @@ HISTSIZE=32768
HISTFILESIZE="${HISTSIZE}"
# Autocompletion
# source /usr/share/bash-completion/bash_completion
if [[ ! -v BASH_COMPLETION_VERSINFO && -f /usr/share/bash-completion/bash_completion ]]; then
source /usr/share/bash-completion/bash_completion
fi
# Set complete path
export PATH="./bin:$HOME/.local/bin:$HOME/.local/share/omarchy/bin:$PATH"

View File

@ -3,4 +3,4 @@ yay -S --noconfirm --needed \
fd eza fzf ripgrep zoxide bat \
wl-clipboard fastfetch btop \
man tldr less whois plocate \
alacritty
alacritty bash-completion

2
migrations/1751821819.sh Normal file
View File

@ -0,0 +1,2 @@
echo "Install bash-completion"
yay -S --noconfirm --needed bash-completion