summaryrefslogtreecommitdiff
path: root/modules/org-contacts-config.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/org-contacts-config.el')
-rw-r--r--modules/org-contacts-config.el11
1 files changed, 4 insertions, 7 deletions
diff --git a/modules/org-contacts-config.el b/modules/org-contacts-config.el
index 489d7a33..676b901d 100644
--- a/modules/org-contacts-config.el
+++ b/modules/org-contacts-config.el
@@ -1,13 +1,13 @@
;;; org-contacts-config.el --- Org Contacts Customizations -*- lexical-binding: t; -*-
;;; Commentary:
-;;
+;; Configuration for Org Contacts.
;;; Code:
(use-package org-contacts
- :after (org org-contrib mu4e)
- :defer 1
+ :after (org mu4e)
+ :defer .5
:bind ("C-z C" . org-contacts) ; starts contacts search
:config
(setq org-contacts-files (cons contacts-file '()))
@@ -16,15 +16,12 @@
'("c" "Contact" entry (file+headline contacts-file "Contacts")
"*%?\n:PROPERTIES:\n:ADDRESS: \n:PHONE: \n:EMAIL: \n:BIRTHDAY: \n:NOTES: \n:END:" :prepend t))
-
(setq mu4e-contacts-file contacts-file)
(add-to-list 'mu4e-headers-actions
'("add contact" . mu4e-action-add-org-contact))
(add-to-list 'mu4e-view-actions
- '("add contact" . mu4e-action-add-org-contact))
- (add-to-list 'mu4e-view-actions
- '("download attachments" . cj/mu4e-view-save-attachments)))
+ '("add contact" . mu4e-action-add-org-contact)))
(provide 'org-contacts-config)
;;; org-contacts-config.el ends here.