diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-21 19:46:54 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-21 19:46:54 +0000 |
commit | 570656232309104d2cc81852303ba9bce068f11b (patch) | |
tree | 9688bfbe12281ce7d76abd4b22db254532480ac1 /init.el | |
parent | 7d2db854beedc19fd7afcf36253ca7d0702e163b (diff) |
added org-notmuch.el
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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) |