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