-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dir_colors
107 lines (100 loc) · 2.46 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
# NOTE: these colors are optimized for a black background
# Configuration file for dircolors, a utility to help you set the
# LS_COLORS environment variable used by GNU ls with the --color option.
# 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 linux
TERM linux-c
TERM mach-color
TERM console
TERM con132x25
TERM con132x30
TERM con132x43
TERM con132x60
TERM con80x25
TERM con80x28
TERM con80x30
TERM con80x43
TERM con80x50
TERM con80x60
TERM xterm
TERM xterm-color
TERM xterm-256color
TERM xterm-debian
TERM rxvt
TERM screen
TERM screen-w
TERM vt100
# 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 # normal file
DIR 00;34 # directory
LINK 00;36 # symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
ORPHAN 01;40;31 # symlink to nonexistent file
FIFO 40;33 # pipe
SOCK 01;35 # socket
DOOR 01;35 # door
BLK 01;40;33 # block device driver
CHR 01;40;33 # character device driver
OTHER_WRITABLE 01;40;34 # directory that is other writable and not sticky
STICKY_OTHER_WRITABLE 01;31 # directory that is other writable and sticky
EXEC 00;32 # files with execute permission
# 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 '#')
# Archives or compressed (red)
.tar 00;31
.tgz 00;31
.arj 00;31
.taz 00;31
.lzh 00;31
.zip 00;31
.z 00;31
.Z 00;31
.gz 00;31
.bz2 00;31
.deb 00;31
.rpm 00;31
.jar 00;31
.dmg 00;31
# Image formats (yellow)
.jpg 00;33
.png 00;33
.gif 00;33
.bmp 00;33
.ppm 00;33
.tga 00;33
.xbm 00;33
.xpm 00;33
.tif 00;33
.png 00;33
.mpg 00;33
.avi 00;33
.fli 00;33
.gl 00;33
.dl 00;33
# Source code files (magenta)
.py 00;35
.hs 00;35
.c 00;35
.pl 00;35
.PL 00;35
.pm 00;35
.tt 00;35
.yml 00;35
.sql 00;35
.html 00;35
.css 00;35
.js 00;35
.coffee 00;35
.rb 00;35
.scala 00;35