mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-19 02:02:32 +01:00
6 lines
121 B
Bash
6 lines
121 B
Bash
# check if pipx is installed
|
|
if (( ! ${+commands[pipx]} )); then
|
|
return
|
|
fi
|
|
|
|
eval "$(register-python-argcomplete pipx)"
|