]> gitweb.pimeys.fr Git - config-20-100.git/blob - .zsh/rc/local/20_env
petite correction zshrc
[config-20-100.git] / .zsh / rc / local / 20_env
1 # This is personnal stuff containing emails, etc.
2 # personnal mail
3 #~# À changer
4 export MAIL="user@example.com"
5 export DEBEMAIL=$MAIL
6 export DEBFULLNAME="My Name"
7
8 export PATH=$PATH:$HOME/bin:/sbin:/usr/sbin
9
10 #
11 export LC_ALL=fr_FR.UTF-8
12
13 # Darcs
14 #~# à changer
15 export DARCS_EMAIL="I'm so pretty <dude@example.com>"
16
17 # for pbuilder
18 export BUILD_ROOT="~/pbuilder/custom/"
19
20 # set editor
21 #~# à changer éventuellement
22 if check_com -c vim 2>&1; then
23 export EDITOR='vim'
24 else
25 export EDITOR="nano"
26 fi
27