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