diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-12-12 00:36:13 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-12-12 01:30:28 -0500 |
commit | 52a9d61f732b48498dcf5b43e1a144557b42c7b6 (patch) | |
tree | c838dc826217462f25d3c534d606210b03594b61 | |
parent | fddf17890e47d9bbeab8f13b0af2106622562501 (diff) | |
download | emacs.d-52a9d61f732b48498dcf5b43e1a144557b42c7b6.tar.gz |
Drop configuration for org-contacts
I haven't used this library in a long time.
-rw-r--r-- | init.el | 16 |
1 files changed, 1 insertions, 15 deletions
@@ -232,8 +232,7 @@ (notmuch-show-stash-subject)) (apply fn args))) - (require 'org-agenda) - (require 'org-contacts)) + (require 'org-agenda)) (use-package org-agenda :init (define-key km/global-org-map "a" #'org-agenda) @@ -277,19 +276,6 @@ (require 'km-org-agenda)) -(use-package org-contacts - :init - (setq org-contacts-files '("~/notes/contacts.org")) - :config - (add-to-list 'org-capture-templates - '("a" "email address" entry - (file+headline "~/notes/contacts.org" "Inbox") - " -** %(org-contacts-template-name) -:PROPERTIES: -:EMAIL: %(org-contacts-template-email) -:END:"))) - (use-package org-attach :init (put 'org-attach-id-dir 'safe-local-variable #'stringp)) |