added custom python support from brew

This commit is contained in:
Carlos Cardoso 2014-04-12 18:00:12 -03:00
commit 4e9a61dcdd

View file

@ -38,6 +38,8 @@ plugins=(git gitfast postgres tmux python vim-override virtualenvwrapper)
# User configuration # User configuration
if [ -e $HOME/bin ]; then export PATH="$HOME/bin:$PATH"; fi if [ -e $HOME/bin ]; then export PATH="$HOME/bin:$PATH"; fi
if [ -e /usr/local/bin ]; then export PATH="/usr/local/bin:$PATH"; fi if [ -e /usr/local/bin ]; then export PATH="/usr/local/bin:$PATH"; fi
if [ -e /usr/local/share/python ]; then export PATH="/usr/local/share/python:$PATH"; fi
if [ -e /usr/local/share/python3 ]; then export PATH="/usr/local/share/python3:$PATH"; fi
export EDITOR='vim' export EDITOR='vim'
# Language configuration # Language configuration