Adding configs
This commit is contained in:
parent
d020d34e59
commit
43e4eac194
6 changed files with 29 additions and 0 deletions
|
@ -32,6 +32,12 @@ zstyle ':prezto:load' pmodule \
|
|||
'spectrum' \
|
||||
'utility' \
|
||||
'completion' \
|
||||
'git' \
|
||||
'homebrew' \
|
||||
'tmux' \
|
||||
'osx' \
|
||||
'wakeonlan' \
|
||||
'syntax-highlighting' \
|
||||
'prompt'
|
||||
|
||||
#
|
||||
|
|
|
@ -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
|
||||
|
|
1
runcoms/zprofile.d/.zprofile.d
Symbolic link
1
runcoms/zprofile.d/.zprofile.d
Symbolic link
|
@ -0,0 +1 @@
|
|||
.zprofile.d
|
12
runcoms/zprofile.d/python
Normal file
12
runcoms/zprofile.d/python
Normal 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
1
runcoms/zprofile.d/ruby
Normal file
|
@ -0,0 +1 @@
|
|||
export RBENV_ROOT=/usr/local/var/rbenv
|
1
runcoms/zprofile.d/vagrant
Normal file
1
runcoms/zprofile.d/vagrant
Normal file
|
@ -0,0 +1 @@
|
|||
export VAGRANT_VMWARE_FUSION_APP="$HOME/Applications/VMWare Fusion.app"
|
Loading…
Add table
Reference in a new issue