mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-13 04:40:59 +01:00
8 lines
158 B
Bash
8 lines
158 B
Bash
# check if pipx is installed
|
|
if (( ! ${+commands[pipx]} )); then
|
|
return
|
|
fi
|
|
|
|
autoload -U bashcompinit
|
|
bashcompinit
|
|
eval "$(register-python-argcomplete pipx)" |