]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .dircolors
.vim: Remove pathogen.vim
[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 ansi
19 TERM color_xterm
20 TERM color-xterm
21 TERM con132x25
22 TERM con132x30
23 TERM con132x43
24 TERM con132x60
25 TERM con80x25
26 TERM con80x28
27 TERM con80x30
28 TERM con80x43
29 TERM con80x50
30 TERM con80x60
31 TERM cons25
32 TERM console
33 TERM cygwin
34 TERM dtterm
35 TERM Eterm
36 TERM eterm-color
37 TERM gnome
38 TERM gnome-256color
39 TERM jfbterm
40 TERM konsole
41 TERM kterm
42 TERM linux
43 TERM linux-c
44 TERM mach-color
45 TERM mlterm
46 TERM nxterm
47 TERM putty
48 TERM rxvt
49 TERM rxvt-256color
50 TERM rxvt-cygwin
51 TERM rxvt-cygwin-native
52 TERM rxvt-unicode
53 TERM rxvt-unicode256
54 TERM screen
55 TERM screen-256color
56 TERM screen-256color-bce
57 TERM screen-bce
58 TERM screen.linux
59 TERM screen-w
60 TERM vt100
61 TERM xterm
62 TERM xterm-16color
63 TERM xterm-256color
64 TERM xterm-88color
65 TERM xterm-color
66 TERM xterm-debian
67
68 # Below are the color init strings for the basic file types. A color init
69 # string consists of one or more of the following numeric codes:
70 #
71 # Attribute codes:
72 # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
73 # Text color codes:
74 # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
75 # Background color codes:
76 # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
77 #
78 NORMAL 00 # global default, although everything should be something.
79 FILE 00 # normal file
80 DIR 01;34 # directory
81 LINK 01;36 # symbolic link
82 FIFO 40;33 # pipe
83 SOCK 01;35 # socket
84 BLK 40;33;01 # block device driver
85 CHR 40;33;01 # character device driver
86 ORPHAN 40;31;01 # symlink to nonexistent file
87
88 # This is for files with execute permission:
89 EXEC 01;32
90
91 # List any file extensions like '.gz' or '.tar' that you would like ls
92 # to colorize below. Put the extension, a space, and the color init string.
93 # (and any comments you want to add after a '#')
94
95 .tar 01;31 # archives or compressed (bright red)
96 .tgz 01;31
97 .arj 01;31
98 .taz 01;31
99 .lzh 01;31
100 .zip 01;31
101 .bz2 01;31
102 .rpm 01;31
103 .deb 01;31
104 .z 01;31
105 .Z 01;31
106 .gz 01;31
107 .deb 01;31
108 .rpm 01;31
109 .jar 01;31
110 .rar 01;31
111 .7z 01;31
112 .dmg 01;31
113
114 .jpg 01;35 # image formats
115 .jpeg 01;35
116 .JPG 01;35
117 .gif 01;35
118 .bmp 01;35
119 .ppm 01;35
120 .tga 01;35
121 .xbm 01;35
122 .xpm 01;35
123 .tif 01;35
124 .png 01;35
125 .psd 01;35
126 .NEF 01;35
127
128 .mpg 01;37 # movie formats
129 .mpeg 01;37
130 .avi 01;37
131 .mov 01;37
132 .rm 01;37
133 .asf 01;37
134 .wmv 01;37
135 .asf 01;37
136 .flc 01;37
137 .flv 01;37
138 .mp4 01;37
139
140 .wav 36 # sound formats
141 .aiff 36
142 .mp3 36
143 .mp2 36
144 .au 36
145 .m3u 36
146 .mod 36
147 .s3m 36
148 .xm 36
149 .mid 36
150 .it 36
151 .ult 36
152 .mtm 36
153 .ram 36
154 .ogg 36
155 .flac 36
156
157 .txt 33 # text formats
158 .doc 33
159 .nfo 33
160 .html 33
161 .mkd 33
162
163 .cpp 01;33 # Programming stuff
164 .cc 01;33
165 .h 33;01
166 .c 33;01
167 .java 01;33
168 .class 01;33
169 .php 01;33
170 .vim 01;33
171