]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - shell/env
d478b17d8b9c5c69844980e38a3549fda3bb2701
[config/dotfiles.git] / shell / env
1 # Configuration file for environment related options for all shells.
2
3
4 source_debug ". ~/.shell/env"
5
6
7 # Use UTF-8 encoding in the terminal. Don't use LC_ALL as it's used for
8 # debugging purposes. Thanks to twb in Freenode/#screen (2009-10-02 10:25).
9 LANG=en_US.UTF-8
10 export LANG
11
12 # Add ~/bin and ~/.bin and ~/.shell/bin to PATH if available.
13 if [ -d ~/.shell/bin ]; then
14     PATH=~/.shell/bin:$PATH
15 fi
16 if [ -d ~/bin ]; then
17     PATH=~/bin:$PATH
18 fi
19 if [ -d ~/.bin ]; then
20     PATH=~/.bin:$PATH
21 fi
22
23 # Use Vim as editor.
24 EDITOR=vim
25 export EDITOR
26
27 # Set less as pager, its configuration is done through the .less file.
28 PAGER=less
29 export PAGER
30
31 # Use ~/tmp as directory for temporary files if available to reduce security
32 # problems on multi-user systems.
33 if [ -O ~/tmp -a -d ~/tmp ]; then
34     TMP=~/tmp
35     TEMP=$TMP
36     TMPDIR=$TMP
37     export TMP TEMP TMPDIR
38 fi
39
40 # Set colors for GNU ls (and zsh completions).
41 # See `dircolors --print-database` for possible colors.
42 LS_COLORS='no=00'
43 LS_COLORS=$LS_COLORS':fi=00'       # normal files: normal
44 LS_COLORS=$LS_COLORS':di=34;01'    # directories: blue bold
45 LS_COLORS=$LS_COLORS':ln=36'       # symbolic links: cyan
46 LS_COLORS=$LS_COLORS':pi=00'       # named pipes: normal
47 LS_COLORS=$LS_COLORS':so=00'       # sockets: normal
48 LS_COLORS=$LS_COLORS':bd=00'       # block devices: normal
49 LS_COLORS=$LS_COLORS':cd=00'       # character devices: normal
50 LS_COLORS=$LS_COLORS':or=36;41'    # orphaned links: red background
51 LS_COLORS=$LS_COLORS':su=31;01;43' # setuid files: yellow background
52 LS_COLORS=$LS_COLORS':sg=31;01;43' # setgid files: yellow background
53 LS_COLORS=$LS_COLORS':ow=34;01;41' # directories writable by others: blue background
54 LS_COLORS=$LS_COLORS':ex=31;01'    # executables: bold red
55 export LS_COLORS
56 # Set the same colors for non GNU ls, except for orphaned links which aren't
57 # supported.
58 LSCOLORS='ExgxxxxxBxxxxxBdBdExEb'
59 #         ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^
60 #         | | | | | | | | | | |
61 #         | | | | | | | | | | *- directory writable to others, without sticky bit
62 #         | | | | | | | | | *--- directory writable to others, with sticky bit
63 #         | | | | | | | | *----- executable with setgid bit set
64 #         | | | | | | | *------- executable with setuid bit set
65 #         | | | | | | *--------- character special
66 #         | | | | | *----------- block special
67 #         | | | | *------------- executable
68 #         | | | *--------------- pipe
69 #         | | *----------------- socket
70 #         | *------------------- symbolic link
71 #         *--------------------- directory
72 export LSCOLORS
73
74
75 source_debug ". ~/.shell/env (done)"
76
77 # vim: ft=sh