]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/env
Added support for colorized completions in zsh.
[config/dotfiles.git] / shell / env
index 944a888d2f2339e77df688d1acbb1d388fec003c..400d4d6c7da385af4aee81a2cf58d66cc0d6f475 100644 (file)
--- a/shell/env
+++ b/shell/env
@@ -9,3 +9,11 @@ export EDITOR=vim
 
 # Set less as pager, its configuration is done through the .less file.
 export PAGER=less
+
+# 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