Merge pull request #80 from smola/smola/bash-completion

Enable bash-completion by default
This commit is contained in:
David Heinemeier Hansson
2025-07-06 14:24:19 -07:00
committed by GitHub
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