summaryrefslogtreecommitdiff
path: root/zsh/env
blob: 5df08b143a5d2402ff6a9cee6ae9d0901aee647d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- mode: shell-script -*-

dotfiles_root() {
  echo ${${(%):-%x}:A:h:h}
}

source_if_exists() {
  [[ -f $(dotfiles_root)/$1 ]] && . $(dotfiles_root)/$1 || return 0
}

export HOST=${HOST:l}
export HOST_SHORT=${${(%):-%m}:l}
export DOMAIN=${${${(%):-%M}#${HOST_SHORT}.}:l}
case ${OSTYPE} in
  darwin*) export UNAME=darwin ;;
   linux*) export UNAME=linux  ;;
esac

setopt EXTENDED_GLOB

source_if_exists dotfiles-${UNAME}/zsh/env
source_if_exists dotfiles-${DOMAIN}/zsh/env
source_if_exists dotfiles-${HOST}/zsh/env