1 # Zsh configuration file for environment related options.
4 # Get the current hostname (first part before a dot).
5 host=${$(hostname)//.*/}
7 # Load environmental related settings used by all shells.
8 if [[ -f ~/.shell/env ]]; then
10 # Fallback functions as ~/.shell/env couldn't be loaded.
12 function source_debug() {
15 function source_config() {
16 echo "Couldn't load source_config(), can't source files." >&2
20 source_debug "sourcing ~/.zsh/env"
22 # Load global env file for current hostname (first part before a dot) or
24 source_config ~/.shell "" env $host
26 # Load rc file for current OS.
27 source_config ~/.zsh os env $(uname) nolocal
28 # Load env file for current hostname (first part before a dot) or env.local.
29 source_config ~/.zsh host env $host
31 source_debug "finished sourcing ~/.zsh/env"