]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .dircolors
Initial commit
[dotfiles.git] / .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 # COLOR needs one of these arguments:
5 # 'tty' colorizes output to ttys, but not pipes (--color=auto),
6 # 'all' adds color characters to all output (--color=always),
7 # 'none' shuts colorization off (--color=never).
8 COLOR tty
9
10 # Extra command line options for ls go here.
11 # Basically these ones are:
12 # -F = show '/' for dirs, '*' for executables, etc.
13 # -T 0 = don't trust tab spacing when formatting ls output.
14 # -b = better support for special characters
15 OPTIONS -F -b -T 0
16
17 # Below, there should be one TERM entry for each termtype that is colorizable
18 TERM linux
19 TERM console
20 TERM con132x25
21 TERM con132x30
22 TERM con132x43
23 TERM con132x60
24 TERM con80x25
25 TERM con80x28
26 TERM con80x30
27 TERM con80x43
28 TERM con80x50
29 TERM con80x60
30 TERM xterm
31 TERM vt100
32 TERM screen
33
34 # Below are the color init strings for the basic file types. A color init
35 # string consists of one or more of the following numeric codes:
36 # Attribute codes:
37 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
38 # Text color codes:
39 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
40 # Background color codes:
41 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
42 NORMAL 00 # global default, although everything should be something.
43 FILE 00 # normal file
44 DIR 01;34 # directory
45 LINK 01;36 # symbolic link
46 FIFO 40;33 # pipe
47 SOCK 01;35 # socket
48 BLK 40;33;01 # block device driver
49 CHR 40;33;01 # character device driver
50 ORPHAN 40;31;01 # symlink to nonexistent file
51
52 # This is for files with execute permission:
53 EXEC 01;32
54
55 # List any file extensions like '.gz' or '.tar' that you would like ls
56 # to colorize below. Put the extension, a space, and the color init string.
57 # (and any comments you want to add after a '#')
58
59 .tar 01;31 # archives or compressed (bright red)
60 .tgz 01;31
61 .arj 01;31
62 .taz 01;31
63 .lzh 01;31
64 .zip 01;31
65 .bz2 01;31
66 .rpm 01;31
67 .deb 01;31
68 .z 01;31
69 .Z 01;31
70 .gz 01;31
71 .deb 01;31
72 .rpm 01;31
73 .jar 01;31
74 .rar 01;31
75 .7z 01;31
76
77 .jpg 01;35 # image formats
78 .jpeg 01;35
79 .gif 01;35
80 .bmp 01;35
81 .ppm 01;35
82 .tga 01;35
83 .xbm 01;35
84 .xpm 01;35
85 .tif 01;35
86 .png 01;35
87 .psd 01;35
88
89 .mpg 01;37 # movie formats
90 .mpeg 01;37
91 .avi 01;37
92 .mov 01;37
93 .rm 01;37
94 .asf 01;37
95 .wmv 01;37
96 .asf 01;37
97 .flc 01;37
98
99 .wav 36 # sound formats
100 .aiff 36
101 .mp3 36
102 .mp2 36
103 .au 36
104 .m3u 36
105 .mod 36
106 .s3m 36
107 .xm 36
108 .mid 36
109 .it 36
110 .ult 36
111 .mtm 36
112 .ram 36
113 .ogg 36
114 .flac 36
115
116 .txt 33 # text formats
117 .doc 33
118 .nfo 33
119 .html 33
120
121 .cpp 01;33 # Programming stuff
122 .cc 01;33
123 .h 33;01
124 .c 33;01
125 .java 01;33
126 .class 01;33
127 .php 01;33
128 .vim 01;33
129