#
# ALT Linux zshenv configuration file for zsh(1).
# This file is sourced on all invocations of the shell.
# This file should not contain commands that product output or assume the shell is attached to a tty.
# Place custom options into ~/.zshenv.
#

# Secure TMPDIR and set TMPPREFIX according to TMPDIR.
[ -f /etc/profile.d/tmpdir.sh ] && . /etc/profile.d/tmpdir.sh &&
	export TMPPREFIX="${TMPDIR:-/tmp}/zsh"


# Path.
typeset -U path
if (( EUID == 0 )); then
    path=(/sbin /usr/sbin)
fi
export X11HOME=/usr/X11R6
path=($path $X11HOME/bin /bin /usr/bin /usr/local/bin)
