From ccc2c39ae055cd4e3ab45535b2f999ce4ee33e1b Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 3 Sep 2019 09:27:04 -0400 Subject: [PATCH] Switch to use-package in #emacs config for mail --- emacs/.config/doom/+mail.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emacs/.config/doom/+mail.el b/emacs/.config/doom/+mail.el index 76acdc6..e534a86 100644 --- a/emacs/.config/doom/+mail.el +++ b/emacs/.config/doom/+mail.el @@ -5,7 +5,7 @@ ;;; https://github.com/fuxialexander/doom-emacs-private-xfu/ ;;;; Notmuch -(def-package! notmuch +(use-package! notmuch :commands (notmuch notmuch-tree notmuch-tree-mode @@ -158,16 +158,16 @@ ;;;; counsel-notmuch (when (featurep! :completion ivy) - (def-package! counsel-notmuch + (use-package! counsel-notmuch :commands counsel-notmuch :after notmuch)) ;;;; helm-notmuch (when (featurep! :completion helm) - (def-package! helm-notmuch + (use-package! helm-notmuch :commands helm-notmuch :after notmuch)) ;;;; org-mime -(def-package! org-mime +(use-package! org-mime :after (org notmuch)) :config (setq org-mime-library 'mml)