X-Git-Url: https://git.alrj.org/?p=zsh.d.git;a=blobdiff_plain;f=S20_env;h=0e2cb7218996966d8af2dbdf38f9e80cec710ad5;hp=81cc4570d943dd42bfd6083016c6310baa3dafaa;hb=HEAD;hpb=fa67692f7af21ac494889ecc956b48c5c4cdf687 diff --git a/S20_env b/S20_env index 81cc457..e702370 100644 --- a/S20_env +++ b/S20_env @@ -8,10 +8,16 @@ 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 -export LANG=fr_BE.UTF-8 +# Virtual env in prompt is already supported. +export VIRTUAL_ENV_DISABLE_PROMPT="yes"