diff options
author | Tristan Williams <tgwil@tgwil.net> | 2024-10-09 23:07:29 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2024-10-09 23:07:29 -0400 |
commit | eff268192e17907be22a70ce7e83dd836f411648 (patch) | |
tree | 3b9a6fc5b20299e64feeae8a6a1396d0ace2d084 | |
parent | Add bash configuration files .bash_profile and .bashrc (diff) | |
download | dotfiles.core-eff268192e17907be22a70ce7e83dd836f411648.tar.gz dotfiles.core-eff268192e17907be22a70ce7e83dd836f411648.tar.bz2 dotfiles.core-eff268192e17907be22a70ce7e83dd836f411648.zip |
Add bash completion to .bashrc
-rw-r--r-- | home/.bashrc | 4 |
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 @@ | |||
6 | if [[ $- != *i* ]]; then | 6 | if [[ $- != *i* ]]; then |
7 | return | 7 | return |
8 | fi | 8 | fi |
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 | ||