]> gitweb.pimeys.fr Git - config-20-100.git/blob - .zsh/rc/local/20_env
Ajout du zshrc, même s'il manque encore de commentaires etc.
[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 #~# remplacer meh par votre login
9 export PATH=$PATH:/home/meh/bin:/sbin:/usr/sbin
10
11 #
12 export LC_ALL=fr_FR.UTF-8
13
14 # Darcs
15 #~# à changer
16 export DARCS_EMAIL="I'm so pretty <dude@example.com>"
17
18 # for pbuilder
19 export BUILD_ROOT="~/pbuilder/custom/"
20
21 # set editor
22 #~# à changer éventuellement
23 if check_com -c vim 2>&1; then
24 export EDITOR='vim'
25 else
26 export EDITOR="nano"
27 fi
28