summary refs log tree commit diff stats
path: root/tag-zsh/config/zsh/zshenv
blob: 86efc02d03c5fef4ab76c49539366e0917892c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
if [[ $SHLVL -eq 1 || (-n $DISPLAY && $SHLVL -lt 3) ]]
then
  if [[ -f $ZDOTDIR/zshenv.local ]]
  then
    . $ZDOTDIR/zshenv.local
  fi

  if [[ -f $ZDOTDIR/zshenv.private ]]
  then
    . $ZDOTDIR/zshenv.private
  fi

  ZPLUG_HOME=${ZPLUG_HOME:-~/projects/zplug}

  if [[ -z $SSH_AUTH_SOCK ]]
  then
    export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent.socket
  fi
fi