diff options
Diffstat (limited to '.emacs.local.d/modes')
| -rw-r--r-- | .emacs.local.d/modes/notmuch.el | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/.emacs.local.d/modes/notmuch.el b/.emacs.local.d/modes/notmuch.el index 208e051..b22ede3 100644 --- a/.emacs.local.d/modes/notmuch.el +++ b/.emacs.local.d/modes/notmuch.el @@ -35,6 +35,13 @@  ;; End upstream  ;; Keymaps +(defun rul/capture-mail() +  "Capture mail to org mode." +  (interactive) +  (org-store-link nil) +  (org-capture nil "m") +  ) +(bind-key "t" 'rul/capture-mail notmuch-show-mode-map)  ; Spam  (define-key notmuch-show-mode-map "S" | 
