chiark / gitweb /
el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax.
[profile] / dot / 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 # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
5 # slackware version of dircolors) are recognized but ignored.
6
7 # Below, there should be one TERM entry for each termtype that is colorizable
8 TERM linux
9 TERM dumb
10 TERM eterm-color
11 TERM console
12 TERM con132x25
13 TERM con132x30
14 TERM con132x43
15 TERM con132x60
16 TERM con80x25
17 TERM con80x28
18 TERM con80x30
19 TERM con80x43
20 TERM con80x50
21 TERM con80x60
22 TERM xterm
23 TERM xterm-debian
24 TERM xterm-256color
25 TERM vt100
26 TERM screen
27 TERM screen.linux
28 TERM screen.xterm-256color
29 TERM screen-w
30
31 # Below are the color init strings for the basic file types. A color init
32 # string consists of one or more of the following numeric codes:
33 # Attribute codes:
34 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
35 # Text color codes:
36 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
37 # Background color codes:
38 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
39 NORMAL 00       # global default, although everything should be something.
40 FILE 00         # normal file
41 DIR 01;36       # directory
42 LINK 36         # symbolic link
43 FIFO 32         # pipe
44 SOCK 01;32      # socket
45 BLK 01;35       # block device driver
46 CHR 35          # character device driver
47 ORPHAN 31;01 # symlink to nonexistent file
48
49 # This is for files with execute permission:
50 EXEC 01
51
52 # List any file extensions like '.gz' or '.tar' that you would like ls
53 # to colorize below. Put the extension, a space, and the color init string.
54 # (and any comments you want to add after a '#')
55
56 # If you use DOS-style suffixes, you may want to uncomment the following:
57 #.cmd 01;32 # executables (bright green)
58 #.exe 01;32
59 #.com 01;32
60 #.btm 01;32
61 #.bat 01;32
62
63 .tar 01;31 # archives or compressed (bright red)
64 .tgz 01;31
65 .arj 01;31
66 .taz 01;31
67 .lzh 01;31
68 .zip 01;31
69 .z   01;31
70 .Z   01;31
71 .gz  01;31
72 .bz2 01;31
73 .deb 01;31
74 # .jpg 01;35 # image formats
75 # .gif 01;35
76 # .bmp 01;35
77 # .ppm 01;35
78 # .tga 01;35
79 # .xbm 01;35
80 # .xpm 01;35
81 # .tif 01;35
82 # .mpg 01;37
83 # .avi 01;37
84 # .gl 01;37
85 # .dl 01;37