about summary refs log tree commit diff stats
path: root/home-manager/config/neomutt/default.nix
blob: 8b6fdc6db168bdda6cd24db624c20cfa9a91080d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{...}: {
  programs.neomutt = {
    enable = true;
    vimKeys = true;
    checkStatsInterval = 60;
    binds = [
      {
        action = "imap-fetch-mail";
        key = "g";
        map = ["index"];
      }
    ];
  };
}
# vim: ts=2