-
Notifications
You must be signed in to change notification settings - Fork 6
/
.dir_colors
311 lines (300 loc) · 6.85 KB
/
.dir_colors
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
#---------------------------
#-- .dir_colors --
#-- by lgaggini --
#-- based on jwryan --
#-- CC BY-SA 3.0 --
#---------------------------
#
# COLOR needs one of these arguments: 'tty' colorizes output to ttys, but not
# pipes. 'all' adds color characters to all output. 'none' shuts colorization
# off.
COLOR all
# Extra command line options for ls go here.
# Basically these ones are:
# -F = show '/' for dirs, '*' for executables, etc.
# -T 0 = don't trust tab spacing when formatting ls output.
# -b = better support for special characters
OPTIONS -F -b -T 0
# EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
EIGHTBIT 1
# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
NORMAL 00 # global default, although everything should be something.
FILE 00;37 # normal file
DIR 01;34 # directory
LINK 01;35 # symbolic link
FIFO 00;33 # pipe
SOCK 01;35 # socket
BLK 01;33;40 # block device driver
CHR 01;35;40 # character device driver
ORPHAN 01;30
EXEC 01;32 # executable permission files
.tar 00;33 # archives or compressed (yellow)
.tgz 00;33
.zip 00;33
.gz 00;33
.bz2 00;33
.tar.xz 00;33
.tar.gz 00;33
.tgz 00;33
.xz 00;33
.rar 00;33
.7z 00;33
.deb 00;33
.rpm 00;33
.lzh 00;33
.tbz2 00;33
.ace 00;33
.jpg 00;36 # image formats (cyan)
.gif 00;36
.bmp 00;36
.xbm 00;36
.xpm 00;36
.tif 00;36
.tga 00;36
.png 00;36
.jpeg 00;36
.tiff 00;36
.xcf 00;36
.xcf.gz 00;36
.blend 00;36
.pcx 00;36
.ppm 00;36
.mp3 00;32 # audio (green)
.fla 00;32
.mid 00;32
.wav 00;32
.au 00;32
.nes 00;32
.smc 00;32
.fig 00;32
.sfc 00;32
.aac 00;32
.flac 00;32
.mka 00;32
.mpc 00;32
.ogg 00;32
.smc.gz 00;32
.fig.gz 00;32
.sfc.gz 00;32
.mpg 01;35 # movie (magenta)
.mpeg 01;35
.avi 01;35
.mov 01;35
.fli 01;35
.flc 01;35
.flv 01;35
.mkv 01;35
.mp4 01;35
.m4v 01;35
.mp4v 01;35
.m2v 01;35
.ogm 01;35
.pdf 01;35 # documents (blue)
.epub 01;35
.fb2 01;35
.ps 01;35
.mobi 01;35
.txt 01;35
.odt 01;35
.ott 01;35
.odm 01;35
.oth 01;35
.ods 01;35
.ots 01;35
.odg 01;35
.otg 01;35
.odp 01;35
.otp 01;35
.odf 01;35
.odb 01;35
.doc 01;35
.dot 01;35
.docx 01;35
.dotx 01;35
.docm 01;35
.dotm 01;35
.xls 01;35
.xlt 01;35
.xla 01;35
.xlsx 01;35
.xltx 01;35
.xlsm 01;35
.xltm 01;35
.xlam 01;35
.xlsb 01;35
.ppt 01;35
.pot 01;35
.pps 01;35
.ppa 01;35
.pptx 01;35
.potx 01;35
.ppsx 01;35
.ppam 01;35
.pptm 01;35
.potm 01;35
.ppsm 01;35
.PL 00;36 # all of the rest (mixed colors)
.asm 00;36
.apvlvrc 00;32
.apvlvinfo 00;32
.asoundrc 00;36
.awk 00;36
.bash 00;31
.bashrc 00;31
.bash_history 00;31
.bash_profile 00;31
.profile 00;31
.bak 01;31
.c 00;36
.cfg 00;36
.coffee 00;36
.conf 00;36
.cpp 00;36
.cs 00;36
.css 00;36
.csv 00;36
.diff 01;33
.dir_colors 01;33
.dmenurc 00;32
.dmenu_cache 00;32
.dmenu-short 00;32
.enc 00;36
.eps 00;36
.etx 00;36
.ex 00;36
.example 00;36
.fehbg 00;36
.fonts 00;36
.git 00;36
.gitignore 00;36
.hgrc 01;34
.hgignore 01;34
.go 01;34
.h 01;34
.hs 01;34
.htm 01;34
.html 01;34
.htoprc 01;34
.info 01;34
.inputrc 00;31
.ini 01;34
.java 01;34
.jhtm 01;34
.js 01;34
.jsm 01;34
.jsm 01;34
.json 01;34
.jsp 01;34
.lisp 01;34
.lesshst 01;34
.log 01;34
.lua 00;33
.map 00;33
.markdown 00;33
.md 00;33
.mf 00;33
.mfasl 00;33
.mi 00;33
.mkd 00;33
.msmtprc 00;33
.mtx 00;33
.muttrc 00;33
.nfo 00;33
.netrc 01;31
.offlineimaprc 00;33
.pacnew 00;33
.patch 00;31
.pc 00;31
.pfa 00;31
.php 00;31
.pid 00;31
.pl 00;31
.pm 00;31
.pod 00;31
.py 00;31
.rc 00;31
.rb 00;31
.rdf 00;31
.ru 00;31
.sed 00;31
.sfv 00;31
.sh 00;31
.signature 00;31
.sty 01;35
.sug 01;35
.t 01;35
.tcl 01;35
.tdy 01;35
.tex 01;35
.textile 01;35
.tfm 01;35
.tfnt 01;35
.theme 01;35
.viminfo 01;35
.xml 01;35
.yml 01;35
.zsh 01;35
.ttytterkey 00;31
.ttytterrc 01;35
.urlview 01;35
.vim 01;35
.vimrc 01;35
.xinitrc 01;31
.Xauthority 01;31
.Xmodmap 00;31
.Xresources 01;33
# Below, there should be one TERM entry for each termtype that is colorizable
TERM Eterm
TERM ansi
TERM color-xterm
TERM con132x25
TERM con132x30
TERM con132x43
TERM con132x60
TERM con80x25
TERM con80x28
TERM con80x30
TERM con80x43
TERM con80x50
TERM con80x60
TERM cons25
TERM console
TERM dtterm
TERM eterm-color
TERM gnome
TERM gnome-256color
TERM jfbterm
TERM konsole
TERM kterm
TERM linux
TERM linux-c
TERM mach-color
TERM mlterm
TERM putty
TERM rxvt
TERM rxvt-256color
TERM rxvt-unicode
TERM rxvt-unicode-256color
TERM rxvt-unicode256
TERM screen
TERM screen-256color
TERM screen-256color-bce
TERM screen-bce
TERM screen-w
TERM screen.rxvt
TERM screen.linux
TERM terminator
TERM vt100
TERM xterm
TERM xterm-16color
TERM xterm-256color
TERM xterm-88color
TERM xterm-color
TERM xterm-debian