diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2018-04-11 20:51:34 -0500 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2018-12-30 12:27:23 -0600 |
commit | daed42a7371b5f26d69826e52560804e23d48fb6 (patch) | |
tree | ff4a00720a65962033694b8d79eb445345180fd6 /mutt/.mutt/colors | |
parent | 10da5377351ae0bbfe75343b95d6a81ee2e217aa (diff) |
mutt: add configuration
Diffstat (limited to 'mutt/.mutt/colors')
-rw-r--r-- | mutt/.mutt/colors | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/mutt/.mutt/colors b/mutt/.mutt/colors new file mode 100644 index 0000000..1f95712 --- /dev/null +++ b/mutt/.mutt/colors @@ -0,0 +1,44 @@ +# -*- muttrc -*- + +# general ui +color error brightred black +color status black blue +color search brightwhite magenta +color indicator black green +color markers brightwhite yellow + +# messages in the index +color tree red black +color index black red ~F # flagged +color index brightwhite black ~U # unread +color index brightgreen black ~N # new +color index brightmagenta black ~T # tagged +color index brightblack black ~D # deleted + +# boring text +color message white black +color normal white black + +# various forms of emphasis +color bold brightyellow black +color underline brightyellow black + +# quoted text +color quoted brightgreen brightblack +color quoted1 brightblue brightblack +color quoted2 brightcyan brightblack +color quoted3 brightmagenta brightblack + +color attachment yellow black +color signature brightgreen black + +# highlight URLs in messages +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]*" +# email addresses +color body brightblue black "[-a-z_0-9.%$+=]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+" + +# colorize diffs +auto_view text/x-diff +auto_view text/x-patch |