diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-25 14:37:40 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-25 14:37:40 -0500 |
| commit | a5555afaf09be4c023f49661d48de803b2586927 (patch) | |
| tree | 78625656fea7df312ed9a4467e2e899433e16998 /modules/org-contacts-config.el | |
| parent | 80de20b443c7a3cbc9283bb64380539d80c61cf8 (diff) | |
re-organized org modules using use-package + maintenance work
- updated packages
- removed :after org-contrib references
- added ob-awk, sed, scheme, and shell backends
- make v play with mpv in elfeed search mode map
- added abbrevs
Diffstat (limited to 'modules/org-contacts-config.el')
| -rw-r--r-- | modules/org-contacts-config.el | 11 |
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. |
