2020-04-11 16:53:12 +04:00
|
|
|
;;; lang/org/contrib/noter.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###if (featurep! +noter)
|
|
|
|
|
|
|
|
(use-package! org-noter
|
|
|
|
:defer t
|
|
|
|
:preface
|
|
|
|
;; Allow the user to preempt this and set the document search path
|
|
|
|
;; If not set then use `org-directory'
|
|
|
|
(defvar org-noter-notes-search-path nil)
|
|
|
|
:config
|
|
|
|
(unless org-noter-notes-search-path
|
2020-05-19 18:36:40 -04:00
|
|
|
(setq org-noter-notes-search-path (list org-directory)))
|
|
|
|
(setq org-noter-auto-save-last-location t
|
|
|
|
org-noter-separate-notes-from-heading t))
|