diff options
Diffstat (limited to '20_Variables.zsh')
-rw-r--r-- | 20_Variables.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/20_Variables.zsh b/20_Variables.zsh index 881285b..dc6266a 100644 --- a/20_Variables.zsh +++ b/20_Variables.zsh @@ -22,7 +22,7 @@ export PAGER=less ## Quelle commande utiliser par défaut ? export NULLCMD=cat -[ `which dircolors` ] && eval $(dircolors ~/.dir_colors 2>&-) +which dircolors 2>&1 >/dev/null && eval $(dircolors ~/.dir_colors 2>&-) export TZ="Europe/Paris" export TIME_STYLE="+%Y-%b-%d %H:%M" |