From e2bede24caba55541a43f28d30021c7db6209387 Mon Sep 17 00:00:00 2001 From: Carlos Cardoso Date: Sat, 19 Apr 2014 11:12:30 -0300 Subject: [PATCH] updated python initialization for macosx --- templates/zshrc-mac.zsh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/templates/zshrc-mac.zsh b/templates/zshrc-mac.zsh index d3ce618a7..fbce8bf88 100644 --- a/templates/zshrc-mac.zsh +++ b/templates/zshrc-mac.zsh @@ -37,18 +37,12 @@ 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 if [ -z "$LC_ALL" ]; then export LC_ALL=en_US.UTF-8; fi if [ -z "$LANG" ]; then export LANG=en_US.UTF-8; fi -# Compilation flags -# export ARCHFLAGS="-arch x86_64" - # MacOSX specific aliases alias bu='brew update && brew upgrade'