diff options
author | Matthew Lemon <y@yulqen.org> | 2023-04-11 12:08:40 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-04-11 12:08:40 +0100 |
commit | 91254440a13261e993a21cd1b08a8db9e52490bd (patch) | |
tree | 1ad93ee084dfe4e903888e22d65210b1e078aa7a /bashrc | |
parent | 918ec40cd8c51068abf58bd6992ebad15bec9f74 (diff) |
Enables completion in bash again
This seemed to be missing from my moving back to bash.
Diffstat (limited to '')
-rw-r--r-- | bashrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4,6 +4,11 @@ complete -cf sudo man which # reduce history size export HISTCONTROL=ignoreboth +# completions +if [ -f /usr/share/bash-completion/completions/pass ]; then + . /usr/share/bash-completion/completions/pass +fi + # export PS1='bash-\v-\u@\h \W\$ ' export PS1='\[\033[38;5;208m\]\u@\h:\w\$\[\033[0m\] ' |