Adding configs

This commit is contained in:
nathairtras 2014-10-23 12:36:54 -07:00
parent d020d34e59
commit 43e4eac194
6 changed files with 29 additions and 0 deletions

View file

@ -32,6 +32,12 @@ zstyle ':prezto:load' pmodule \
'spectrum' \
'utility' \
'completion' \
'git' \
'homebrew' \
'tmux' \
'osx' \
'wakeonlan' \
'syntax-highlighting' \
'prompt'
#

View file

@ -75,3 +75,11 @@ TMPPREFIX="${TMPDIR%/}/zsh"
if [[ ! -d "$TMPPREFIX" ]]; then
mkdir -p "$TMPPREFIX"
fi
# Load all of our environment variables
# Source Environment Variables
for i in ${ZDOTDIR:-$HOME}/.zprofile.d/*; do
if [ -r "$i" ]; then
. $i
fi
done

View file

@ -0,0 +1 @@
.zprofile.d

12
runcoms/zprofile.d/python Normal file
View file

@ -0,0 +1,12 @@
#Pip
export PIP_REQUIRE_VIRTUALENV=true
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
#Virtual Environments
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Devel
#Virtual Environment Wrapper
export VIRTUALENVWRAPPER_PROJECT_FILENAME=.project
export VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh
export VIRTUALENVWRAPPER_HOOK_DIR=$HOME/.virtualenvs

1
runcoms/zprofile.d/ruby Normal file
View file

@ -0,0 +1 @@
export RBENV_ROOT=/usr/local/var/rbenv

View file

@ -0,0 +1 @@
export VAGRANT_VMWARE_FUSION_APP="$HOME/Applications/VMWare Fusion.app"