]> git.madduck.net Git - etc/zsh.git/blob - .zsh/dircolors

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

476c4e675468a255d9993f5c20ea041be48c4866
[etc/zsh.git] / .zsh / dircolors
1 # dircolors
2 #
3 # colours for directory listings for normal people
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: git://git.madduck.net/etc/zsh.git
9 #
10
11 ### BEGIN dircolors --print-database output ##################################
12 # Configuration file for dircolors, a utility to help you set the
13 # LS_COLORS environment variable used by GNU ls with the --color option.
14 # Copyright (C) 1996, 1999-2008
15 # Free Software Foundation, Inc.
16 # Copying and distribution of this file, with or without modification,
17 # are permitted provided the copyright notice and this notice are preserved.
18 # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
19 # slackware version of dircolors) are recognized but ignored.
20 # Below, there should be one TERM entry for each termtype that is colorizable
21 TERM Eterm
22 TERM ansi
23 TERM color-xterm
24 TERM con132x25
25 TERM con132x30
26 TERM con132x43
27 TERM con132x60
28 TERM con80x25
29 TERM con80x28
30 TERM con80x30
31 TERM con80x43
32 TERM con80x50
33 TERM con80x60
34 TERM cons25
35 TERM console
36 TERM cygwin
37 TERM dtterm
38 TERM eterm-color
39 TERM gnome
40 TERM gnome-256color
41 TERM konsole
42 TERM kterm
43 TERM linux
44 TERM linux-c
45 TERM mach-color
46 TERM mlterm
47 TERM putty
48 TERM rxvt
49 TERM rxvt-cygwin
50 TERM rxvt-cygwin-native
51 TERM rxvt-unicode
52 TERM screen
53 TERM screen-256color
54 TERM screen-bce
55 TERM screen-w
56 TERM screen.linux
57 TERM vt100
58 TERM xterm
59 TERM xterm-16color
60 TERM xterm-256color
61 TERM xterm-88color
62 TERM xterm-color
63 TERM xterm-debian
64 # Below are the color init strings for the basic file types. A color init
65 # string consists of one or more of the following numeric codes:
66 # Attribute codes:
67 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
68 # Text color codes:
69 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
70 # Background color codes:
71 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
72 NORMAL 00 # global default, although everything should be something.
73 FILE 00 # normal file
74 DIR 01;34 # directory
75 LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
76  # numerical value, the color is as for the file pointed to.)
77 FIFO 40;33 # pipe
78 SOCK 01;35 # socket
79 DOOR 01;35 # door
80 BLK 40;33;01 # block device driver
81 CHR 40;33;01 # character device driver
82 ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
83 SETUID 37;41 # file that is setuid (u+s)
84 SETGID 30;43 # file that is setgid (g+s)
85 STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
86 OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
87 STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
88 # This is for files with execute permission:
89 EXEC 01;32
90 # List any file extensions like '.gz' or '.tar' that you would like ls
91 # to colorize below. Put the extension, a space, and the color init string.
92 # (and any comments you want to add after a '#')
93 # If you use DOS-style suffixes, you may want to uncomment the following:
94 #.cmd 01;32 # executables (bright green)
95 #.exe 01;32
96 #.com 01;32
97 #.btm 01;32
98 #.bat 01;32
99 # Or if you want to colorize scripts even if they do not have the
100 # executable bit actually set.
101 #.sh 01;32
102 #.csh 01;32
103  # archives or compressed (bright red)
104 .tar 01;31
105 .tgz 01;31
106 .svgz 01;31
107 .arj 01;31
108 .taz 01;31
109 .lzh 01;31
110 .lzma 01;31
111 .zip 01;31
112 .z 01;31
113 .Z 01;31
114 .dz 01;31
115 .gz 01;31
116 .bz2 01;31
117 .bz 01;31
118 .tbz2 01;31
119 .tz 01;31
120 .deb 01;31
121 .rpm 01;31
122 .jar 01;31
123 .rar 01;31
124 .ace 01;31
125 .zoo 01;31
126 .cpio 01;31
127 .7z 01;31
128 .rz 01;31
129 # image formats
130 .jpg 01;35
131 .jpeg 01;35
132 .gif 01;35
133 .bmp 01;35
134 .pbm 01;35
135 .pgm 01;35
136 .ppm 01;35
137 .tga 01;35
138 .xbm 01;35
139 .xpm 01;35
140 .tif 01;35
141 .tiff 01;35
142 .png 01;35
143 .svg 01;35
144 .mng 01;35
145 .pcx 01;35
146 .mov 01;35
147 .mpg 01;35
148 .mpeg 01;35
149 .m2v 01;35
150 .mkv 01;35
151 .ogm 01;35
152 .mp4 01;35
153 .m4v 01;35
154 .mp4v 01;35
155 .vob 01;35
156 .qt 01;35
157 .nuv 01;35
158 .wmv 01;35
159 .asf 01;35
160 .rm 01;35
161 .rmvb 01;35
162 .flc 01;35
163 .avi 01;35
164 .fli 01;35
165 .gl 01;35
166 .dl 01;35
167 .xcf 01;35
168 .xwd 01;35
169 .yuv 01;35
170 # audio formats
171 .aac 00;36
172 .au 00;36
173 .flac 00;36
174 .mid 00;36
175 .midi 00;36
176 .mka 00;36
177 .mp3 00;36
178 .mpc 00;36
179 .ogg 00;36
180 .ra 00;36
181 .wav 00;36
182 ### END dircolors --print-database output ####################################
183
184 # now override stuff for those who don't take as much LSD:
185
186 # Attribute codes:
187 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
188 # Text color codes:
189 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
190 # Background color codes:
191 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
192 DIR 01;30
193 LINK target
194 EXEC 00;34
195
196 # archives or compressed
197 .tar 00;31
198 .tgz 00;31
199 .svgz 00;31
200 .arj 00;31
201 .taz 00;31
202 .lzh 00;31
203 .lzma 00;31
204 .zip 00;31
205 .z 00;31
206 .Z 00;31
207 .dz 00;31
208 .gz 00;31
209 .bz2 00;31
210 .bz 00;31
211 .tbz2 00;31
212 .tz 00;31
213 .deb 00;31
214 .rpm 00;31
215 .jar 00;31
216 .rar 00;31
217 .ace 00;31
218 .zoo 00;31
219 .cpio 00;31
220 .7z 00;31
221 .rz 00;31
222 # image formats
223 .jpg 00
224 .jpeg 00
225 .gif 00
226 .bmp 00
227 .pbm 00
228 .pgm 00
229 .ppm 00
230 .tga 00
231 .xbm 00
232 .xpm 00
233 .tif 00
234 .tiff 00
235 .png 00
236 .svg 00
237 .mng 00
238 .pcx 00
239 .mov 00
240 .mpg 00
241 .mpeg 00
242 .m2v 00
243 .mkv 00
244 .ogm 00
245 .mp4 00
246 .m4v 00
247 .mp4v 00
248 .vob 00
249 .qt 00
250 .nuv 00
251 .wmv 00
252 .asf 00
253 .rm 00
254 .rmvb 00
255 .flc 00
256 .avi 00
257 .fli 00
258 .gl 00
259 .dl 00
260 .xcf 00
261 .xwd 00
262 .yuv 00
263 # audio formats
264 .aac 00
265 .au 00
266 .flac 00
267 .mid 00
268 .midi 00
269 .mka 00
270 .mp3 00
271 .mpc 00
272 .ogg 00
273 .ra 00
274 .wav 00
275
276 # vim:ft=dircolors