blob: e905bbb033d6ea721d6ded4f28e2fabf2814ceae (
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
}
[[ ${HOST} =~ \\. ]] && export DOMAIN=${(j:.:)${(s:.:)HOST}[-2,-1]:l}
export HOST=${HOST:l}
export HOST_SHORT=${${(%):-%m}: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
|