[READ-ONLY] Mirror of https://github.com/mrgnw/dotfiles. My shell customizations - aliases, functions, and themes.
dotfiles shell zinit zsh
0

Configure Feed

Select the types of activity you want to include in your feed.

uv tool for user/global python tools

+7 -15
-15
python.zsh
··· 1 - p+() { uv pip install "$@"} 2 - p-() { uv pip uninstall "$@"} 3 - 4 - »(){ 5 - if [ -d .venv ]; then 6 - source .venv/bin/activate 7 - else 8 - echo "\t» ~/.venv" 9 - source ~/.venv/bin/activate 10 - fi 11 - } 12 - «(){ deactivate } 13 - 14 - # allows pip install x[y] 15 - set +o nomatch
+7
uv.zsh
··· 1 + t+(){ uv tool install "$@" } 2 + t»(){ uv tool upgrade "$@" } 3 + t-(){ uv tool remove "$@" } 4 + 5 + # uv autocomplete 6 + eval "$(uv generate-shell-completion zsh)" 7 +