summaryrefslogtreecommitdiff
path: root/common/home/programs/neomutt/default.nix
blob: f6df8ce8b8a58d38f72565e78c3ee2123aef4703 (plain)
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
{ ... }:
{
  enable = true;

	vimKeys = true;

  extraConfig = ''
		auto_view text/html
		alternative_order text/plain text/html

    color hdrdefault green black
    color quoted blue black
    color signature blue black
    color attachment red black
    color prompt brightmagenta black
    color message brightred black
    color error brightred black
    color indicator black green
    color status color234 green
    color tree brightblack black
    color normal white black
    color markers green black
    color search white black
    color tilde brightmagenta black
    color index blue black ~F
    color index green black "~N|~O"
  '';
}