Add a working neomutt configuration

This commit is contained in:
Orien Vandenbergh
2025-04-16 13:40:55 -04:00
parent 405e4059cd
commit 6a923426b0
18 changed files with 405 additions and 0 deletions

64
neomutt/colours Normal file
View File

@ -0,0 +1,64 @@
# -*- muttrc -*-
#
# Colour settings for mutt.
#
# Default colour definitions
color hdrdefault cyan black
color quoted red black
color signature blue brightblack
color indicator brightwhite black
color attachment green black
color error red black
color message yellow black
color search brightwhite magenta
color status green brightblack
color tree red black
color normal white black
color tilde blue black
color bold yellow black
color markers red black
# Colour definitions when on a mono screen
mono bold bold
mono underline underline
mono indicator reverse
# Colours for items in the reader
color header brightcyan black "^(From|Subject):"
#color header red black "^X-Junked-Because: "
#color header red black "^X-Virus-hagbard: .* FOUND"
mono header bold "^(From|Subject|X-Junked-Because|X-Virus-hagbard):"
# Colours for items in the index
color index white black ~N
color index brightblue black "~N (~e guidepointsecurity\.com | ~h \"^In-[Rr]eply-[Tt]o: .*guidepointsecurity\.com\")"
color index red black ~F
color index green black ~T
color index blue black ~D
mono index bold ~N
mono index bold ~F
mono index bold ~T
mono index bold ~D
# Highlights inside the body of a message.
# URLs
color body brightblue black "(http|https|ftp|news|telnet|finger)://[^ \">\t\r\n]*"
color body brightblue black "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
color body brightblue black "news:[^ \">\t\r\n]*"
mono body bold "(http|https|ftp|news|telnet|finger)://[^ \">\t\r\n]*"
mono body bold "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
mono body bold "news:[^ \">\t\r\n]*"
# email addresses
color body brightblue black "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+"
mono body bold "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+"
# Various smilies and the like
color body brightgreen black "<[Gg]>" # <g>
color body brightgreen black "<[Bb][Gg]>" # <bg>
color body brightgreen black " [;:]-*[)>(<|]" # :-) etc...
color body brightblue black "(^|[[:space:]])\\*[^[:space:]]+\\*([[:space:]]|$)" # *Bold* text.
color body brightblue black "(^|[[:space:]])_[^[:space:]]+_([[:space:]]|$)" # _Underlined_ text.
color body brightblue black "(^|[[:space:]])/[^[:space:]]+/([[:space:]]|$)" # /Italic/ text.