From bf5401dca55d69beaeb25ebe2f6733c23646b21e Mon Sep 17 00:00:00 2001 From: Daneel Date: Mon, 23 Feb 2026 20:11:55 +0100 Subject: [PATCH] feat(org-noter): notes-search-path, auto-save-last-location, no-questions insert --- config.el | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config.el b/config.el index 1675302..bfcaaad 100644 --- a/config.el +++ b/config.el @@ -1207,7 +1207,15 @@ Otherwise: runs interactive ement-connect, then opens rooms after sync." (use-package! org-noter :after (:any org pdf-view) :config - (setq org-noter-notes-window-location 'horizontal-split)) + (setq org-noter-notes-window-location 'horizontal-split + ;; Where to search for and create notes files (same dir as org notes) + org-noter-notes-search-path (list (expand-file-name "notes/" org-directory)) + ;; Remember last position in PDF across sessions + org-noter-auto-save-last-location t + ;; Insert note at precise location (not just page level) + org-noter-insert-note-no-questions nil + ;; Always use separate notes file per PDF (cleaner than one big file) + org-noter-use-indirect-buffer nil)) (map! :leader (:prefix ("o" . "open")