Support LESS_TERMCAP_*
[grml-etc-core.git] / etc / zsh / zshenv
1 # Filename:      zshenv
2 # Purpose:       system-wide .zshenv file for zsh(1)
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 # Latest change: Mon Jul 23 11:37:26 CEST 2007 [mika]
7 ################################################################################
8 # This file is sourced on all invocations of the shell.
9 # It is the 1st file zsh reads; it's read for every shell,
10 # even if started with -f (setopt NO_RCS), all other
11 # initialization files are skipped.
12 #
13 # This file should contain commands to set the command
14 # search path, plus other important environment variables.
15 # This file should not contain commands that produce
16 # output or assume the shell is attached to a tty.
17 #
18 # Notice: .zshenv is the same, execpt that it's not read
19 # if zsh is started with -f
20 #
21 # Global Order: zshenv, zprofile, zshrc, zlogin
22 ################################################################################
23
24 # language settings (read in /etc/environment before /etc/default/locale as
25 # the latter one is the default on Debian nowadays)
26   [ -r /etc/environment    ] && source /etc/environment
27
28 # set environment variables (important for autologin on tty)
29   [ -z "$HOSTNAME" ]      && export HOSTNAME=`hostname`
30   [ -z "$USER" ]          && export USER=`id -un`
31   [[ $LOGNAME == LOGIN ]] && LOGNAME=$(id -un)
32
33 # workaround for live-cd mode as $HOME is not set via rungetty
34   if [ -f /etc/grml_cd ] ; then
35     if (( EUID == 0 )); then
36        export HOME=/root
37     else
38        export HOME=/home/$USER
39     fi
40   fi
41
42 # set $PATH
43 # gentoo users have to source /etc/profile.env
44   if [ -r /etc/gentoo-release ] ; then
45      [ -r /etc/profile.env ] && source /etc/profile.env
46        if (( EUID != 0 )); then
47           PATH="$HOME/bin:/bin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/games:/usr/NX/bin:$PATH"
48        else
49           PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin:/usr/NX/bin:$PATH"
50        fi
51   else
52     # support extra software in special directory outside of squashfs environment in live-cd mode
53     if [ -f /etc/grml_cd ] ; then
54        [ -d /cdrom/addons/ ] && ADDONS=':/cdrom/addons/'
55     fi
56     if (( EUID != 0 )); then
57       PATH="$HOME/bin:/bin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/games:/usr/NX/bin$ADDONS"
58     else
59       PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin:/usr/NX/bin$ADDONS"
60     fi
61   fi
62
63   # Solaris 
64   # case $(uname 2>/dev/null) in
65   #   SunOS)
66   #      PATH="/usr/bin:/usr/sbin:/usr/ccs/bin:/usr/sfw/bin:/opt/sfw/bin:/opt/bin:/usr/local/bin:/usr/openwin/bin:/usr/dt/bin:/usr/ucb:/usr/proc/bin:~/bin"
67   #      # LD_LIBRARY_PATH="/opt/csw/lib:/opt/sfw/lib:/usr/lib:/usr/local/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/ucb/lib"
68   #      # MANPATH="$MANPATH:/opt/csw/man:/usr/man:/usr/share/man:/usr/local/man:/opt/sfw/man"
69   #esac
70
71 # less (:=pager) options:
72 #  export LESS=C
73   if [ -x /usr/bin/lesspipe ] ; then
74      export LESSOPEN="|lesspipe %s"
75   elif [ -x /usr/bin/lesspipe.sh ] ; then
76      export LESSOPEN="|lesspipe.sh %s"
77   fi
78   export READNULLCMD=${PAGER:-/usr/bin/pager}
79
80 # support termcap colors when using PAGER=less:
81   export LESS_TERMCAP_mb=$'\E[01;31m'
82   export LESS_TERMCAP_md=$'\E[01;31m'
83   export LESS_TERMCAP_me=$'\E[0m'
84   export LESS_TERMCAP_se=$'\E[0m'
85   export LESS_TERMCAP_so=$'\E[01;44;33m'
86   export LESS_TERMCAP_ue=$'\E[0m'
87   export LESS_TERMCAP_us=$'\E[01;32m'
88
89 # allow zeroconf for distcc
90   export DISTCC_HOSTS="+zeroconf"
91
92 # MAKEDEV should be usable on udev as well by default:
93   export WRITE_ON_UDEV=yes
94
95 ## END OF FILE #################################################################