diff options
author | Soispha <soispha@vhack.eu> | 2023-04-12 14:25:34 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:30:33 +0200 |
commit | 1d5c974b43f47587d2a15bf96e2bdaa2081e436e (patch) | |
tree | 3891f7226e08880ee8df89e0aaec14a66d77513d /home-manager | |
parent | Fix(hm/conf/mail): Use correct username (diff) | |
download | nixos-config-1d5c974b43f47587d2a15bf96e2bdaa2081e436e.tar.gz nixos-config-1d5c974b43f47587d2a15bf96e2bdaa2081e436e.zip |
Feat(hm/conf/neomutt): Add fetch-mail bind
Diffstat (limited to 'home-manager')
-rw-r--r-- | home-manager/config/neomutt/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/home-manager/config/neomutt/default.nix b/home-manager/config/neomutt/default.nix index eebe1c12..522249fc 100644 --- a/home-manager/config/neomutt/default.nix +++ b/home-manager/config/neomutt/default.nix @@ -2,6 +2,13 @@ programs.neomutt = { enable = true; vimKeys = true; + binds = [ + { + action = "imap-fetch-mail"; + key = "g"; + map = ["index"]; + } + ]; }; } # vim: ts=2 |