Blame view
templates/zshrc.sh
521 Bytes
|
9f172c720
|
1 |
#@IgnoreInspection AddShebang |
|
c73235dd2
|
2 |
|
|
65f6e5cb0
|
3 |
# ENVIRONMENT: |
|
c12c31621
|
4 |
export GJ_ENV=local_aptproxy |
|
65f6e5cb0
|
5 |
|
|
f7f123531
|
6 7 8 9 |
export LANG=en_US.UTF-8 # Compilation flags export ARCHFLAGS="-arch x86_64" |
|
8abd22b22
|
10 |
# User configuration |
|
8abd22b22
|
11 12 |
export PATH=$HOME/bin:/usr/local/bin:$PATH # export MANPATH="/usr/local/man:$MANPATH" |
|
c73235dd2
|
13 14 15 16 |
plugins=( pip python virtualenv virtualenvwrapper #meteor node npm ) |
|
8abd22b22
|
17 |
|
|
c73235dd2
|
18 19 20 |
# virtualenvwrapper: export WORKON_HOME=$HOME/.virtualenvs source /usr/local/bin/virtualenvwrapper.sh |
|
c12c31621
|
21 22 |
# Aliases |
|
c73235dd2
|
23 24 25 |
if [ -f $ZCFG/dotfiles/zshrc.sh ]; then
. $ZCFG/dotfiles/zshrc.sh
fi
|