forked from crossjam/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdircolors_emacs
More file actions
80 lines (63 loc) · 1.21 KB
/
dircolors_emacs
File metadata and controls
80 lines (63 loc) · 1.21 KB
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
# Configuration for dircolors with dark background terminals (e.g. Emacs vterm)
TERM xterm-256color
# Default file colors
NORMAL 00 # regular file
FILE 00 # fallback for regular files
RESET 0
# Directory
# DIR 94 # bold blue
DIR 01;38;5;117
# Symlink
LINK 01;36 # bold cyan
# Socket
SOCK 01;35 # bold magenta
# Pipe
FIFO 33 # yellow
# Executable
EXEC 01;32 # bold green
# Block device
BLK 01;33 # bold yellow
# Char device
CHR 01;33 # bold yellow
# Setuid
SETUID 37;41 # white on red
# Setgid
SETGID 30;43 # black on yellow
# Sticky other-writable dir
STICKY_OTHER_WRITABLE 30;46 # black on cyan
# Other-writable dir (not sticky)
OTHER_WRITABLE 34;42 # blue on green
# Sticky dir
STICKY 37;44 # white on blue
# Archive files (tar, zip, etc.)
*.tar 01;31
*.tgz 01;31
*.arc 01;31
*.zip 01;31
*.gz 01;31
*.bz2 01;31
*.xz 01;31
# Image files
*.jpg 01;35
*.jpeg 01;35
*.png 01;35
*.gif 01;35
*.bmp 01;35
*.tiff 01;35
*.svg 01;35
# Source code
*.c 00;36
*.cpp 00;36
*.py 00;36
*.sh 00;36
*.el 00;36
*.js 00;36
*.ts 00;36
*.rs 00;36
*.go 00;36
# Docs
*.txt 00;37
*.md 00;37
*.org 00;37
*.pdf 00;31
*.tex 00;37