#! /usr/bin/zsh if [ x"$HOME" = x ] ; then export HOME=$(cd ~ ; pwd) fi if [ x"$HOSTNAME" = x ] ; then export HOSTNAME=$(hostname) fi # May seem strange, but usefull when the user's official shell is not zsh if [ "${SHELL: -3}" != zsh ] ; then export SHELL=/usr/bin/zsh fi export EMAIL="amand.tihon@iba-group.com" export FULLNAME="Amand Tihon" export EDITOR=vim # Virtual env in prompt is already supported. export VIRTUAL_ENV_DISABLE_PROMPT="yes"