X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Fenv;h=2d89b53416dbde019b6abc7939da8666c2e32c92;hb=0cff6e93883566cedfc863e615887339514553aa;hp=944a888d2f2339e77df688d1acbb1d388fec003c;hpb=15483177a0e457dfae6a44caed7392ca3762de5c;p=config%2Fdotfiles.git diff --git a/shell/env b/shell/env index 944a888..2d89b53 100644 --- a/shell/env +++ b/shell/env @@ -2,10 +2,21 @@ # Use UTF-8 encoding in the terminal. -export LC_ALL=en_US.UTF-8 +LC_ALL=en_US.UTF-8 +export LC_ALL # Use Vim as editor. -export EDITOR=vim +EDITOR=vim +export EDITOR # Set less as pager, its configuration is done through the .less file. -export PAGER=less +PAGER=less +export PAGER + +# Set colors for ls (and zsh completions). This colors files normal (fi), +# directories blue bold (di), symbolic links cyan (ln), named pipes normal +# (pi), sockets normal (so), block devices normal (bd), character devices +# normal (cd) and executables bold red (ex). +# See `dircolors --print-database` for possible colors. +LS_COLORS='no=00:fi=00:di=34;01:ln=36:pi=00:so=00:bd=00:cd=00:ex=31;01' +export LS_COLORS