Blame view

templates/zshrc.sh 521 Bytes
9f172c720   mj   .zshrc
1
  #@IgnoreInspection AddShebang
c73235dd2   mj   .zshrc.sh: SPLIT ...
2

65f6e5cb0   mj   IMP template: zshrc
3
  # ENVIRONMENT:
c12c31621   mj   environment.sh
4
  export GJ_ENV=local_aptproxy
65f6e5cb0   mj   IMP template: zshrc
5

f7f123531   mj   zshrc
6
7
8
9
  export LANG=en_US.UTF-8
  
  # Compilation flags
  export ARCHFLAGS="-arch x86_64"
8abd22b22   mj   ADD template: zshrc
10
  # User configuration
8abd22b22   mj   ADD template: zshrc
11
12
  export PATH=$HOME/bin:/usr/local/bin:$PATH
  # export MANPATH="/usr/local/man:$MANPATH"
c73235dd2   mj   .zshrc.sh: SPLIT ...
13
14
15
16
  plugins=(
  		pip python virtualenv virtualenvwrapper
  		#meteor node npm
  )
8abd22b22   mj   ADD template: zshrc
17

c73235dd2   mj   .zshrc.sh: SPLIT ...
18
19
20
  # virtualenvwrapper:
  export WORKON_HOME=$HOME/.virtualenvs
  source /usr/local/bin/virtualenvwrapper.sh
c12c31621   mj   environment.sh
21
22
  
  # Aliases
c73235dd2   mj   .zshrc.sh: SPLIT ...
23
24
25
  if [ -f $ZCFG/dotfiles/zshrc.sh ]; then
      . $ZCFG/dotfiles/zshrc.sh
  fi