diff options
Diffstat (limited to '.emacs.d/rul-init.d/notmuch.el')
-rw-r--r-- | .emacs.d/rul-init.d/notmuch.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.emacs.d/rul-init.d/notmuch.el b/.emacs.d/rul-init.d/notmuch.el index 19ea823..e8e4d9d 100644 --- a/.emacs.d/rul-init.d/notmuch.el +++ b/.emacs.d/rul-init.d/notmuch.el @@ -1,10 +1,10 @@ ;; -------- ;; notmuch mode ;; -------- -(require 'notmuch) -(require 'notmuch-indicator) (require 'rul-config-mail) - +(use-package notmuch +:ensure t +:config ;;;; General UI (setq notmuch-show-logo nil notmuch-column-control 1.0 @@ -131,3 +131,6 @@ pairs in `binds' of the form ( ... (argfunc arg) body)." (make-binds notmuch-hello-mode-map notmuch-hello-tree-searches notmuch-search) +) + +(use-package notmuch-indicator :ensure t) |