]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .dircolors
.dircolors: Add xterm-color and xterm-256color, for better OSX Terminal defaults
[dotfiles.git] / .dircolors
1 # Configuration file for dircolors, a utility to help you set the
2 # LS_COLORS environment variable used by GNU ls with the --color option.
3
4 # COLOR needs one of these arguments:
5 # 'tty' colorizes output to ttys, but not pipes (--color=auto),
6 # 'all' adds color characters to all output (--color=always),
7 # 'none' shuts colorization off (--color=never).
8 COLOR tty
9
10 # Extra command line options for ls go here.
11 # Basically these ones are:
12 # -F = show '/' for dirs, '*' for executables, etc.
13 # -T 0 = don't trust tab spacing when formatting ls output.
14 # -b = better support for special characters
15 OPTIONS -F -b -T 0
16
17 # Below, there should be one TERM entry for each termtype that is colorizable
18 TERM linux
19 TERM console
20 TERM con132x25
21 TERM con132x30
22 TERM con132x43
23 TERM con132x60
24 TERM con80x25
25 TERM con80x28
26 TERM con80x30
27 TERM con80x43
28 TERM con80x50
29 TERM con80x60
30 TERM xterm
31 TERM xterm-color
32 TERM xterm-256color
33 TERM vt100
34 TERM screen
35
36 # Below are the color init strings for the basic file types. A color init
37 # string consists of one or more of the following numeric codes:
38 # Attribute codes:
39 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
40 # Text color codes:
41 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
42 # Background color codes:
43 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
44 NORMAL 00 # global default, although everything should be something.
45 FILE 00 # normal file
46 DIR 01;34 # directory
47 LINK 01;36 # symbolic link
48 FIFO 40;33 # pipe
49 SOCK 01;35 # socket
50 BLK 40;33;01 # block device driver
51 CHR 40;33;01 # character device driver
52 ORPHAN 40;31;01 # symlink to nonexistent file
53
54 # This is for files with execute permission:
55 EXEC 01;32
56
57 # List any file extensions like '.gz' or '.tar' that you would like ls
58 # to colorize below. Put the extension, a space, and the color init string.
59 # (and any comments you want to add after a '#')
60
61 .tar 01;31 # archives or compressed (bright red)
62 .tgz 01;31
63 .arj 01;31
64 .taz 01;31
65 .lzh 01;31
66 .zip 01;31
67 .bz2 01;31
68 .rpm 01;31
69 .deb 01;31
70 .z 01;31
71 .Z 01;31
72 .gz 01;31
73 .deb 01;31
74 .rpm 01;31
75 .jar 01;31
76 .rar 01;31
77 .7z 01;31
78
79 .jpg 01;35 # image formats
80 .jpeg 01;35
81 .JPG 01;35
82 .gif 01;35
83 .bmp 01;35
84 .ppm 01;35
85 .tga 01;35
86 .xbm 01;35
87 .xpm 01;35
88 .tif 01;35
89 .png 01;35
90 .psd 01;35
91 .NEF 01;35
92
93 .mpg 01;37 # movie formats
94 .mpeg 01;37
95 .avi 01;37
96 .mov 01;37
97 .rm 01;37
98 .asf 01;37
99 .wmv 01;37
100 .asf 01;37
101 .flc 01;37
102 .flv 01;37
103
104 .wav 36 # sound formats
105 .aiff 36
106 .mp3 36
107 .mp2 36
108 .au 36
109 .m3u 36
110 .mod 36
111 .s3m 36
112 .xm 36
113 .mid 36
114 .it 36
115 .ult 36
116 .mtm 36
117 .ram 36
118 .ogg 36
119 .flac 36
120
121 .txt 33 # text formats
122 .doc 33
123 .nfo 33
124 .html 33
125
126 .cpp 01;33 # Programming stuff
127 .cc 01;33
128 .h 33;01
129 .c 33;01
130 .java 01;33
131 .class 01;33
132 .php 01;33
133 .vim 01;33
134