]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - shell/env
Added support for colorized completions in zsh.
[config/dotfiles.git] / shell / env
1 # Configuration file for environment related options for all shells.
2
3
4 # Use UTF-8 encoding in the terminal.
5 export LC_ALL=en_US.UTF-8
6
7 # Use Vim as editor.
8 export EDITOR=vim
9
10 # Set less as pager, its configuration is done through the .less file.
11 export PAGER=less
12
13 # Set colors for ls (and zsh completions). This colors files normal (fi),
14 # directories blue bold (di), symbolic links cyan (ln), named pipes normal
15 # (pi), sockets normal (so), block devices normal (bd), character devices
16 # normal (cd) and executables bold red (ex).
17 # See `dircolors --print-database` for possible colors.
18 LS_COLORS='no=00:fi=00:di=34;01:ln=36:pi=00:so=00:bd=00:cd=00:ex=31;01'
19 export LS_COLORS