16 lines
407 B
Bash
16 lines
407 B
Bash
#!/bin/bash
|
|
#
|
|
sudo apt-install -y pipx python3-argcomplete
|
|
#
|
|
# cat <<-EOF | tee ${DEST}/.zshrc.d/002_pipx-completitions.zsh
|
|
# eval "$(register-python-argcomplete pipx)"
|
|
# EOF
|
|
|
|
# zgen-local-plugins see: 020_zsh_quickstart.sh
|
|
# https://github.com/thuandt/zsh-pipx
|
|
# zgenom load thuandt/zsh-pipx
|
|
# adds:
|
|
# # pipx completions
|
|
# source <(register-python-argcomplete pipx)
|
|
# as a plugin for zsh.
|