diff options
| author | Craig Jennings <c@cjennings.net> | 2025-07-13 18:39:23 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-07-13 18:39:23 -0500 |
| commit | b9bbf9154f3f803f7430085347cbd00b65230930 (patch) | |
| tree | 0374cc59b61d18f510c6b07c813357df370bb264 /modules/test-code.el | |
| parent | 08b7ae98b50d6fec166fe9f611441ded23c83441 (diff) | |
| download | dotemacs-b9bbf9154f3f803f7430085347cbd00b65230930.tar.gz dotemacs-b9bbf9154f3f803f7430085347cbd00b65230930.zip | |
org-noter config changes
- remove local custom package
- vertical split
- use sync-dir variable for search path
- use org-pdftools for more precise links to pdftools documents
- change default-notes-file-names to reading-notes.org
Diffstat (limited to 'modules/test-code.el')
| -rw-r--r-- | modules/test-code.el | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/modules/test-code.el b/modules/test-code.el index dca4b4a1..aa4ec607 100644 --- a/modules/test-code.el +++ b/modules/test-code.el @@ -10,18 +10,24 @@ (use-package org-noter - ;; :ensure nil ;; custom code - ;; :load-path "custom/org-noter.el" :after (:any org pdf-view) :commands org-noter :bind ("<f6>" . org-noter) :config + (setq org-noter-always-create-frame nil) + (setq org-noter-notes-window-location 'vertical-split) + (setq org-noter-notes-window-behavior 'scroll) (setq org-noter-doc-split-fraction '(0.75 . 0.75)) - (setq org-noter-notes-search-path '("~/sync/org/org-noter/")) - (setq org-noter-default-notes-file-names '("notes.org")) + (setq org-noter-notes-search-path (concat sync-dir "/org-noter/")) + (setq org-noter-default-notes-file-names '("reading-notes.org")) (setq org-noter-separate-notes-from-heading t) (org-noter-enable-org-roam-integration)) + +(use-package org-pdftools + :after (org pdf-view) + :hook (org-mode . org-pdftools-setup-link)) + ;; ------------------------------------ Pomm ----------------------------------- (use-package pomm |
