From 4e9a61dcdd1dc0ebb63f236dd3083fff92057ee0 Mon Sep 17 00:00:00 2001 From: Carlos Cardoso Date: Sat, 12 Apr 2014 18:00:12 -0300 Subject: [PATCH] added custom python support from brew --- templates/zshrc-mac.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/zshrc-mac.zsh b/templates/zshrc-mac.zsh index 2a1895e60..d3ce618a7 100644 --- a/templates/zshrc-mac.zsh +++ b/templates/zshrc-mac.zsh @@ -38,6 +38,8 @@ plugins=(git gitfast postgres tmux python vim-override virtualenvwrapper) # User configuration 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/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' # Language configuration