5 # Written by Joerg Jaspert <joerg@debian.org>
9 # We (may) use those variables wherever, so fill them now.
10 # Avoids calling the processes all the time we need em.
12 USER=${USER:-`whoami`}
14 # :r strips "extension" (a . followed by 0 or more characters)
16 HOST=${HOST:-$(hostname -s)}
17 DOMAIN=${DOMAIN:-$(hostname -d 2>&-)}
18 [ "$DOMAIN" = "" -o "$DOMAIN" = "localdomain" -o "$DOMAIN" = "(none)" ] && DOMAIN=$(grep "^search " /etc/resolv.conf | cut -d' ' -f2)
19 [[ -f /etc/debian_version ]] && DISTRI="Debian"
20 [[ -f /etc/redhat-release ]] && DISTRI="RedHat"
22 # Local settings and styles can go here and (usually) overwrite
23 # things defined by me later.
24 [[ -f ${ZDOTDIR}/zshenv.local ]] && source ${ZDOTDIR}/zshenv.local
28 # In case the user wants oh-my-zsh plugins, we add their path to the
29 # fpath, as they often have completion functions.
31 if [[ -d ${ZDOTDIR}/plugins/ohmy ]]; then
33 zstyle -a ':ganneff:config' ohmyplugins omplug
34 for plug in ${omplug}; do
35 if [[ -f ${ZDOTDIR}/plugins/ohmy/${plug}/${plug}.plugin.zsh ]]; then
36 ompath+=(${ZDOTDIR}/plugins/ohmy/${plug})
42 # Path to search for autoloadable functions.
43 fpath=( ${ZDOTDIR}/functions $ompath[@] $fpath[@] )
46 # Only unique entries please.
48 fpath=( ${^fpath}(N-/) )
51 # Include function path in script path so that we can run them even
52 # though a subshell may not know about functions.
53 # PATH should already be exported, but in case not. . .
64 /usr/lib/nagios/plugins
69 if [ "`id -u`" = "0" ] || ! [ -x /usr/bin/id ]; then
85 # Only unique entries please.
89 # Remove entries that don't exist on this system. Just for sanity's
90 # sake more than anything.
91 path=( ${^path}(N-/) )
92 manpath=( ${^manpath}(N-/) )
94 # Command to use when redirecting from/to a null command.
95 # READNULLCMD is redefined in .zshrc for interactive shells.
99 # Unix groups: remember the original group ID. (For prompts.)
100 if [[ ${+ORIGGID} -eq 0 ]]; then
101 export ORIGGID="$GID"
104 # Just to make damn sure they are there.
105 export PATH USER HOST DOMAIN UID OSNAME DISTRI