This repository has been archived by the owner on Aug 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
colors
78 lines (63 loc) · 2.37 KB
/
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
# vim: ft=muttrc
# set default
color normal white default
# main colors
color status green default
color indicator brightwhite default
color tree blue default
color error brightred default
color message brightyellow default
#
# message states
#
# order matters here since some states override others
#
# messages to me
uncolor index "~P"
color index brightblack default "~P"
# threads containing new messages
uncolor index "~(~N)"
color index brightblue default "~(~N)"
# new messages themselves
uncolor index "~N"
color index brightyellow default "~N"
# tagged
uncolor index "~T"
color index brightgreen default "~T"
# deleted
uncolor index "~D"
color index brightred default "~D"
# set up the headers
color header brightyellow default "^from:"
color header yellow default "^to:"
color header yellow default "^cc:"
color header blue default "^date:"
color header brightblue default "^subject:"
# message bodies
color attachment brightblack default
color search red brightblack
color signature cyan default
color tilde blue default
# gpg
color body brightgreen default "^gpg: Good signature.*"
color body brightred default "^gpg: BAD signature.*"
color body yellow default "^gpg: Can't check signature.*"
# urls
color body brightblue default "(^|<| )mailto:[^ ]+@[^ ]( |>|$)"
color body brightblue default "(^|<| )(http|https|ftp|file|telnet|news|finger)://[^ ]+( |>|$)"
# smileys, the right way and the backward-ass euro way
color body brightmagenta default "(^| )+(|[<>|])[8;:](|[^ ])[)(/|DOPS]( |$)+"
color body brightmagenta default "(^| )+[)(/|DOPS](|[^ ])[8;:](|[<>|])( |$)+"
# *bold*, _underline_, and /italic/
color body brightcyan default "(^| )\\*[^*]+\\*( |$)"
color body brightcyan default "(^| )_[^_]+_( |$)"
color body brightcyan default "(^| )/[^/]+/( |$)"
# quote blocks
color quoted magenta default
color quoted1 cyan default
color quoted2 green default
color quoted3 magenta default
color quoted4 cyan default
color quoted5 green default
color quoted6 magenta default
color quoted7 cyan default