aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Williams <tgwil@tgwil.net>2024-10-09 23:07:29 -0400
committerTristan Williams <tgwil@tgwil.net>2024-10-09 23:07:29 -0400
commiteff268192e17907be22a70ce7e83dd836f411648 (patch)
tree3b9a6fc5b20299e64feeae8a6a1396d0ace2d084
parentAdd bash configuration files .bash_profile and .bashrc (diff)
downloaddotfiles.core-eff268192e17907be22a70ce7e83dd836f411648.tar.gz
dotfiles.core-eff268192e17907be22a70ce7e83dd836f411648.tar.bz2
dotfiles.core-eff268192e17907be22a70ce7e83dd836f411648.zip
Add bash completion to .bashrc
-rw-r--r--home/.bashrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/home/.bashrc b/home/.bashrc
index 2296561..b1f7ea4 100644
--- a/home/.bashrc
+++ b/home/.bashrc
@@ -6,3 +6,7 @@
6if [[ $- != *i* ]]; then 6if [[ $- != *i* ]]; then
7 return 7 return
8fi 8fi
9
10## Bash completion
11[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \
12&& source /usr/local/share/bash-completion/bash_completion.sh