diff options
author | Kierán Meinhardt <kieran.meinhardt@gmail.com> | 2020-10-07 13:58:08 +0200 |
---|---|---|
committer | Kierán Meinhardt <kieran.meinhardt@gmail.com> | 2020-10-07 13:58:08 +0200 |
commit | f9df01eb4b98fc37393f35a8c2b4793b895f8333 (patch) | |
tree | bcfe3f1414ab931086893a47ca233a7c03926aa8 | |
parent | 949f117a1e67fbdf6b46a9e0ac698021bd1984f8 (diff) |
kmein config: optimize reply action
-rw-r--r-- | config/kmein.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/kmein.hs b/config/kmein.hs index a5da7e1..806072e 100644 --- a/config/kmein.hs +++ b/config/kmein.hs @@ -112,7 +112,7 @@ openAttachment q = callProcess "xdg-open" [destination] $> q reply :: State -> IO State -reply q = spawnCommand "i3-sensible-terminal -e $EDITOR -c 'read !mail-reply'" $> q +reply q = spawnCommand "alacritty -e nvim -c 'read! mail-reply' -c 'execute \"normal gg\" | set filetype=mail'" $> q myKeymap :: String -> State -> IO State myKeymap "h" = closeFold |