removed files
[~madcoder/dotfiles.git] / config / zsh / 20_environment
1 #! /bin/zsh
2
3 export EMAIL="pierre.habouzit@m4x.org"
4 export NAME="Pierre Habouzit"
5 export FULLNAME="$NAME"
6
7 export DEBEMAIL="madcoder@debian.org"
8 export DEBFULLNAME="$NAME"
9
10 export CVS_RSH="ssh"
11 export MANWIDTH=80
12 export EDITOR=vim
13 export VISUAL=vim
14 export CCACHE_DIR="$HOME/.cache/ccache"
15 export CCACHE_NOCOMPRESS=NoThanks
16 export CCACHE_HARDLINK=YesPlease
17
18 export RLWRAP_HOME="$HOME/.cache/rlwrap/"
19 export GTK_IM_MODULE=xim
20
21 export BROWSER=chromium-browser
22
23 export LC_MESSAGES=C
24 unset  LC_ALL
25 unset  VERBOSE
26
27 if [ $(whoami) = root ]; then
28     PATH=~root/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH
29 else
30     case "${PATH}" in
31         *:${HOME}/local/bin:*)
32             ;;
33         *)
34             PATH="${HOME}/bin:/usr/local/bin:${PATH}"
35             case $(uname) in
36                 Darwin)
37                     ;;
38                 *)
39                     LD_LIBRARY_PATH="${HOME}/local/lib"
40                     ;;
41             esac
42             ;;
43     esac
44 fi
45
46 if test -f /etc/timezone -a -z "$TZ"; then
47     export TZ=$(cat /etc/timezone)
48 fi