mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-04 20:37:37 +08: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)"
|