summaryrefslogtreecommitdiffstats
path: root/init.el
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-11-21 19:46:54 +0000
committerMatthew Lemon <matt@matthewlemon.com>2022-11-21 19:46:54 +0000
commit570656232309104d2cc81852303ba9bce068f11b (patch)
tree9688bfbe12281ce7d76abd4b22db254532480ac1 /init.el
parent7d2db854beedc19fd7afcf36253ca7d0702e163b (diff)
added org-notmuch.el
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/init.el b/init.el
index f3c5f7d..ee178da 100644
--- a/init.el
+++ b/init.el
@@ -23,6 +23,13 @@
;; notmuch is apparently already installed with notmuch from arch
(require 'notmuch)
+;; org and notmuch
+(add-to-list 'load-path "~/.emacs.d/lisp")
+(require 'org-notmuch)
+(org-link-set-parameters "notmuch"
+ :follow 'org-notmuch-open
+ :store 'org-notmuch-store-link)
+
;; set custom file
(setq custom-file (concat user-emacs-directory "custom.el"))
(load custom-file 'noerror)