mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-12 20:31:00 +01:00
7 lines
121 B
Bash
7 lines
121 B
Bash
# check if pipx is installed
|
|
if (( ! ${+commands[pipx]} )); then
|
|
return
|
|
fi
|
|
|
|
eval "$(register-python-argcomplete pipx)"
|