spacemacs/layers/+email/notmuch/packages.el

136 lines
5.0 KiB
EmacsLisp

;;; packages.el --- Notmuch Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq notmuch-packages
'(
(counsel-notmuch :requires ivy)
(helm-notmuch :requires helm)
notmuch
org
persp-mode
))
(defun notmuch/init-counsel-notmuch ()
(use-package counsel-notmuch
:defer t
:init (spacemacs/set-leader-keys "aNn" 'counsel-notmuch)))
(defun notmuch/init-helm-notmuch ()
(use-package helm-notmuch
:defer t
:init (spacemacs/set-leader-keys "aNn" 'helm-notmuch)))
(defun notmuch/init-notmuch ()
(use-package notmuch
:defer t
:commands notmuch
:init
(progn
(spacemacs/declare-prefix "aN" "notmuch")
(spacemacs/set-leader-keys
"aNN" 'notmuch
"aNi" 'spacemacs/notmuch-inbox
"aNj" 'notmuch-jump-search
"aNs" 'notmuch-search))
:config
(progn
(dolist (prefix '(("ms" . "stash")
("mp" . "part")
("mP" . "patch")))
(spacemacs/declare-prefix-for-mode 'notmuch-show-mode
(car prefix) (cdr prefix)))
;; key bindings
(evil-define-key 'visual notmuch-search-mode-map
"*" 'notmuch-search-tag-all
"a" 'notmuch-search-archive-thread
"-" 'notmuch-search-remove-tag
"+" 'notmuch-search-add-tag)
(spacemacs/set-leader-keys-for-major-mode 'notmuch-show-mode
"a" 'notmuch-show-save-attachments
;; part
"pm" 'notmuch-show-choose-mime-of-part
"pp" 'spacemacs/notmuch-show-as-patch
"p|" 'notmuch-show-pipe-part
"po" 'notmuch-show-interactively-view-part
"pv" 'notmuch-show-view-part
"ps" 'notmuch-show-save-part
;; stash
"sG" 'notmuch-show-stash-git-send-email
"sL" 'notmuch-show-stash-mlarchive-link-and-go
"sl" 'notmuch-show-stash-mlarchive-link
"st" 'notmuch-show-stash-to
"sT" 'notmuch-show-stash-tags
"ss" 'notmuch-show-stash-subject
"sI" 'notmuch-show-stash-message-id-stripped
"si" 'notmuch-show-stash-message-id
"sf" 'notmuch-show-stash-from
"sF" 'notmuch-show-stash-filename
"sd" 'notmuch-show-stash-date
"sc" 'notmuch-show-stash-cc
;; patch
"Po" 'spacemacs/notmuch-show-open-github-patch
"Pa" 'spacemacs/notmuch-git-apply-patch
"PA" 'spacemacs/notmuch-git-apply-patch-part)
;; evilified maps
(evilified-state-evilify-map notmuch-hello-mode-map
:mode notmuch-hello-mode)
(evilified-state-evilify-map notmuch-show-mode-map
:mode notmuch-show-mode
:bindings
;; In notmuch-show-mode n would be bound to `notmuch-show-next-message`
;; but the evilified state moves the `n' bound function to C-n while
;; it's counterpart `notmuch-show-previous-message` remains bound to
;; `p'. Adding a binding for the previous function to `C-p' becomes
;; handy while navigation messages back and forth.
(kbd "C-p") 'notmuch-show-previous-message
(kbd "n") 'notmuch-show-next-open-message
(kbd "o") 'notmuch-show-open-or-close-all
(kbd "O") 'spacemacs/notmuch-show-close-all)
(evilified-state-evilify-map notmuch-tree-mode-map
:mode notmuch-tree-mode
:bindings
(kbd "d") 'spacemacs/notmuch-message-delete-down
(kbd "D") 'spacemacs/notmuch-message-delete-up
(kbd "M") 'compose-mail-other-frame)
(evilified-state-evilify-map notmuch-search-mode-map
:mode notmuch-search-mode
:bindings
(kbd "a") 'spacemacs/notmuch-search-archive-thread-down
(kbd "A") 'spacemacs/notmuch-search-archive-thread-up
(kbd "d") 'spacemacs/notmuch-message-delete-down
(kbd "D") 'spacemacs/notmuch-message-delete-up
(kbd "J") 'notmuch-jump-search
(kbd "L") 'notmuch-search-filter
(kbd "gg") 'notmuch-search-first-thread
(kbd "gr") 'notmuch-refresh-this-buffer
(kbd "gR") 'notmuch-refresh-all-buffers
(kbd "G") 'notmuch-search-last-thread
(kbd "M") 'compose-mail-other-frame))))
(defun notmuch/pre-init-org ()
(spacemacs|use-package-add-hook org
:post-config (require 'org-notmuch)))
(defun notmuch/pre-init-persp-mode ()
(spacemacs|use-package-add-hook persp-mode
:post-config
(progn
(add-to-list 'persp-filter-save-buffers-functions
'spacemacs//notmuch-persp-filter-save-buffers-function)
(spacemacs|define-custom-layout notmuch-spacemacs-layout-name
:binding notmuch-spacemacs-layout-binding
:body
(progn
(dolist (mode notmuch-modes)
(let ((hook (intern (concat (symbol-name mode) "-hook"))))
(add-hook hook #'spacemacs//notmuch-buffer-to-persp)))
(call-interactively 'notmuch))))))