forked from Remz-Jay/vim-config
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.dircolors
247 lines (243 loc) · 5.29 KB
/
.dircolors
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
# Configuration file for dircolors, a utility to help you set the
# LS_COLORS environment variable used by GNU ls with the --color option.
# Copyright (C) 1996, 1999-2010 Free Software Foundation, Inc.
# Copying and distribution of this file, with or without modification,
# are permitted provided the copyright notice and this notice are preserved.
# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
# slackware version of dircolors) are recognized but ignored.
# 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 cygwin
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 putty-256color
TERM rxvt
TERM rxvt-256color
TERM rxvt-cygwin
TERM rxvt-cygwin-native
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.Eterm
TERM screen.rxvt
TERM screen.linux
TERM st
TERM st-256color
TERM terminator
TERM vt100
TERM xterm
TERM xterm-16color
TERM xterm-256color
TERM xterm-88color
TERM xterm-color
TERM xterm-debian
# 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
# Extended color codes for terminals that support more than 16 colors:
# (the above color codes still work for these terminals)
# Text color coding:
# 38;5;COLOR_NUMBER
# Background color coding:
# 48;5;COLOR_NUMBER
# COLOR_NUMBER is from 0 to 255.
# infocmp xterm-256color
#NORMAL 00 # no color code at all
#FILE 00 # regular file: use no color at all
RESET 0 # reset to "normal" color
DIR 01;38;5;67 # directory
LINK 38;5;117 # symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
MULTIHARDLINK 00 # regular file with more than one link
FIFO 40;33 # pipe
SOCK 38;5;134 # socket
DOOR 38;5;134 # door
BLK 40;33;01 # block device driver
CHR 40;33;01 # character device driver
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
SETUID 37;41 # file that is setuid (u+s)
SETGID 30;43 # file that is setgid (g+s)
CAPABILITY 30;41 # file with capability
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
OTHER_WRITABLE 38;5;46 # dir that is other-writable (o+w) and not sticky
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
# This is for files with execute permission:
EXEC 38;5;28
# List any file extensions like '.gz' or '.tar' that you would like ls
# to colorize below. Put the extension, a space, and the color init string.
# (and any comments you want to add after a '#')
# If you use DOS-style suffixes, you may want to uncomment the following:
#.cmd 01;32 # executables (bright green)
#.exe 01;32
#.com 01;32
#.btm 01;32
#.bat 01;32
# Or if you want to colorize scripts even if they do not have the
# executable bit actually set.
#.sh 01;32
#.csh 01;32
# archives or compressed (bright red)
.t3x 38;5;124
.tar 38;5;124
.tgz 38;5;124
.arj 38;5;124
.taz 38;5;124
.lzh 38;5;124
.lzma 38;5;124
.tlz 38;5;124
.txz 38;5;124
.zip 38;5;124
.z 38;5;124
.Z 38;5;124
.dz 38;5;124
.gz 38;5;124
.lz 38;5;124
.xz 38;5;124
.bz2 38;5;124
.bz 38;5;124
.tbz 38;5;124
.tbz2 38;5;124
.tz 38;5;124
.deb 38;5;124
.rpm 38;5;124
.jar 38;5;124
.rar 38;5;124
.ace 38;5;124
.zoo 38;5;124
.cpio 38;5;124
.7z 38;5;124
.rz 38;5;124
.jar 38;5;124
.war 38;5;124
.ear 38;5;124
.sar 38;5;124
.rar 38;5;124
.alz 38;5;124
.ace 38;5;124
.zoo 38;5;124
.cpio 38;5;124
.7z 38;5;124
.rz 38;5;124
.cab 38;5;124
# image formats
.ico 38;5;134
.jpg 38;5;134
.jpeg 38;5;134
.gif 38;5;134
.bmp 38;5;134
.pbm 38;5;134
.pgm 38;5;134
.ppm 38;5;134
.tga 38;5;134
.xbm 38;5;134
.xpm 38;5;134
.tif 38;5;134
.tiff 38;5;134
.png 38;5;134
.svg 38;5;134
.svgz 38;5;134
.mng 38;5;134
.pcx 38;5;134
.mov 38;5;134
.mpg 38;5;134
.mpeg 38;5;134
.m2v 38;5;134
.mkv 38;5;134
.ogm 38;5;134
.mp4 38;5;134
.m4v 38;5;134
.mp4v 38;5;134
.vob 38;5;134
.qt 38;5;134
.nuv 38;5;134
.wmv 38;5;134
.asf 38;5;134
.rm 38;5;134
.rmvb 38;5;134
.flc 38;5;134
.avi 38;5;134
.fli 38;5;134
.flv 38;5;134
.gl 38;5;134
.dl 38;5;134
.xcf 38;5;134
.xwd 38;5;134
.yuv 38;5;134
.cgm 38;5;134
.emf 38;5;134
# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
.axv 38;5;134
.anx 38;5;134
.ogv 38;5;134
.ogx 38;5;134
# audio formats
.aac 38;5;130
.au 38;5;130
.flac 38;5;130
.mid 38;5;130
.midi 38;5;130
.mka 38;5;130
.mp3 38;5;130
.mpc 38;5;130
.ogg 38;5;130
.ra 38;5;130
.wav 38;5;130
# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
.axa 38;5;130
.oga 38;5;130
.spx 38;5;130
.xspf 38;5;130
# custom
# coding
.diff 38;5;98
.patch 38;5;98
# Text
.c 38;5;65
.coffee 38;5;65
.cpp 38;5;65
.css 38;5;65
.csv 38;5;65
.h 38;5;65
.html 38;5;65
.ini 38;5;65
.js 38;5;65
.log 38;5;65
.scss 38;5;65
.sql 38;5;65
.ts 38;5;65
.txt 38;5;65
.xml 38;5;65