summary refs log tree commit diff stats
path: root/zsh/.config/zsh/.zshenv
blob: 51323f108740445d41a27105cc5fa09290e5e3dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
if [[ $SHLVL -eq 1 || -n $DISPLAY ]]
then
  if [[ -f $ZDOTDIR/zshenv.local ]]
  then
    . $ZDOTDIR/zshenv.local
  fi

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

  if [[ -z $SSH_AUTH_SOCK ]]
  then
    export SSH_AUTH_SOCK=${XDG_RUNTIME_DIR:-/run/user/$UID}/ssh-agent
  fi

  if [[ -e $HOME/.nix-profile/etc/profile.d/nix.sh ]]
  then
    . $HOME/.nix-profile/etc/profile.d/nix.sh;
  fi

  case $OSTYPE in
    darwin*)
      os=darwin
      ;;
    linux-gnu)
      os=linux
      ;;
    freebsd*)
      os=freebsd
      ;;
    *)
      os=unknown
      ;;
  esac

  if [[ $os == "linux" ]]
  then
    read osrelease < /proc/sys/kernel/osrelease
    if [[ $osrelease =~ Microsoft$ ]]
    then
      windows=1
    fi
  fi

  case $MACHTYPE in
    *64)
      arch=amd64
      ;;
    *)
      arch=386
      ;;
  esac

  if [[ ${path[(I)$HOME/.local/bin ]} ]]
  then
    path+=($HOME/.local/bin)
  fi

  if [[ ${path[(I)$HOME/go/bin ]} ]]
  then
    path+=($HOME/go/bin)
  fi

  export GTAGSCONF=~/.globalrc
  export GTAGSLABEL=ctags

  export GHQ_ROOT="$HOME/projects:$HOME/go/src"
fi