aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/doom/config.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/config/doom/config.org b/config/doom/config.org
index 44f59b0..f5823bb 100644
--- a/config/doom/config.org
+++ b/config/doom/config.org
@@ -197,6 +197,7 @@ this new window.
(setq notmuch-saved-searches
'((:name "inbox" :query "tag:inbox" :key "i" :sort-order newest-first)
(:name "CMK" :query "(tag:CMK-JIRA or tag:lists/gerrit-check_mk) and tag:unread" :key "c")
+ (:name "Isar-Speak" :query "(tag:toastmasters or tag:lists/isar-speak-officers or to isarspeak@gmail.com) and tag:unread" :key "t")
(:name "flagged" :query "tag:flagged" :key "f")
(:name "sent" :query "tag:sent" :key "s")
(:name "unread" :query "tag:unread" :key "u")
@@ -292,6 +293,17 @@ this new window.
(add-hook 'message-send-mail-hook 'set-smtp-server))
#+end_src
+** Contacts
+#+begin_src emacs-lisp :tangle "packages.el"
+(package! vcard)
+(package! vdirel)
+#+end_src
+
+#+begin_src emacs-lisp
+(use-package! vdirel
+ :config
+ (setq vdirel-repository "~/.contacts/contacts"))
+#+end_src
* Ledger
Emacs mode for managing ledger text files
#+BEGIN_SRC emacs-lisp