]> git.alrj.org Git - zsh.d.git/blob - S20_env
Add a wrapper for mc to stay in current directory upon exit
[zsh.d.git] / S20_env
1 #! /usr/bin/zsh
2
3 if [ x"$HOME" = x ] ; then
4         export HOME=$(cd ~ ; pwd)
5 fi
6
7 if [ x"$HOSTNAME" = x ] ; then
8         export HOSTNAME=$(hostname)
9 fi
10
11 export EMAIL="amand.tihon@iba-group.com"
12 export FULLNAME="Amand Tihon"
13
14 export EDITOR=vim
15
16 export LANG=fr_BE.UTF-8
17
18 # Virtual env in prompt is already supported.
19 export VIRTUAL_ENV_DISABLE_PROMPT="yes"