-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot.emacs_dircolors
56 lines (49 loc) · 1.7 KB
/
dot.emacs_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
# Configuration file for the color ls utility
# This file goes in the /etc directory, and must be world readable.
# You can copy this file to .dir_colors in your $HOME directory to
# override the system defaults.
# 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 tty
OPTIONS -F
# Below, there should be one TERM entry for each termtype that is
# colorizable
TERM eterm
# 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 # normal file
DIR 00;37 # directory
LINK 00;36 # symbolic link
FIFO 00;37 # pipe
SOCK 40;35 # socket
BLK 33;01 # block device driver
CHR 33;01 # character device driver
# This is for files with execute permission:
EXEC 00;32
# 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 '#')
.tar 01;33 # archives or compressed
.tgz 01;33
.arj 01;33
.taz 01;33
.lzh 01;33
.zip 01;33
.z 01;33
.Z 01;33
.gz 01;33
.jpg 01;35 # image formats
.gif 01;35
.bmp 01;35
.xbm 01;35
.xpm 01;35