43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
# Mike Gerwitz personal mutt color configuration
|
|
#
|
|
# Copyright (C) 2014 Mike Gerwitz
|
|
#
|
|
# Copying and distribution of this file, with or without modification, are
|
|
# permitted in any medium without royalty provided the copyright notice and
|
|
# this notice are preserved. This file is offered as-is, without warranty
|
|
# of any kind.
|
|
#
|
|
# This file expects that the referenced groups will be defined elsewhere;
|
|
# for example, I define many of them in a private `contacts' configuration
|
|
# file that I keep out of the repository to protect the privacy of myself
|
|
# and those referenced in the file.
|
|
|
|
color normal default default
|
|
color hdrdefault cyan default
|
|
color signature green default
|
|
color attachment yellow default
|
|
color quoted green default
|
|
color quoted1 white default
|
|
color tilde blue default
|
|
color indicator default blue
|
|
color tree magenta default
|
|
|
|
color index red default '~F'
|
|
color index brightblue default '~U'
|
|
color index brightred default '~U~F'
|
|
|
|
# stuff that needs my attention
|
|
set my_attnpat="(%f attn)"
|
|
color index yellow default "$my_attnpat"
|
|
color index brightyellow default "$my_attnpat ~U"
|
|
|
|
# programming/technology related; note that GNU below overrides
|
|
set my_tpat="(%f gnu | %f fsf | %C gnu | %C fsf | %f tech)"
|
|
color index magenta default "$my_tpat"
|
|
color index brightmagenta default "$my_tpat ~U"
|
|
|
|
# point out GNU account e-mails
|
|
set my_gnupat="(~C 'mikegerwitz@gnu.org' | ~h '^Envelope-to: mikegerwitz@gnu.org$')"
|
|
color index green default "$my_gnupat"
|
|
color index brightgreen default "$my_gnupat ~U"
|