1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-01 02:19:25 +00:00

[Fix #218] Add support for pythonz

This commit is contained in:
Sorin Ionescu
2012-09-02 21:14:32 -04:00
committed by Sorin Ionescu
parent 1ea238e276
commit 1057801208
2 changed files with 42 additions and 1 deletions

View File

@ -27,8 +27,25 @@ if [[ -n "$WORKON_HOME" ]] && (( $+commands[virtualenvwrapper.sh] )); then
source "$commands[virtualenvwrapper.sh]"
fi
# Load pythonz into the shell session.
if [[ -s $HOME/.pythonz/bin/pythonz ]]; then
path=($HOME/.pythonz/bin $path)
fi
#
# Aliases
#
alias py='python'
# pythonz
if (( $+commands[pythonz] )); then
alias pyz='pythonz'
alias pyzc='pythonz cleanup'
alias pyzi='pythonz install'
alias pyzl='pythonz list'
alias pyzL='pythonz list -a'
alias pyzu='pythonz update'
alias pyzx='pythonz uninstall'
fi