aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-21 06:34:29 -0800
committerCraig Jennings <c@cjennings.net>2025-11-21 06:34:29 -0800
commit0d554568677bf3edb3dd982fa076a2ed231c6b3c (patch)
treeb22ae4aaacc36dc21b1b5d84fc9d1410ed7e89e1
parent59b7cec26704e9582b5cf7052a1e381bbc71470f (diff)
downloaddotemacs-0d554568677bf3edb3dd982fa076a2ed231c6b3c.tar.gz
dotemacs-0d554568677bf3edb3dd982fa076a2ed231c6b3c.zip
fix(org-noter): remove duplicate org-roam integration call
- Removed duplicate org-noter-enable-org-roam-integration call - Fixed indentation in when block for pdftools integration
-rw-r--r--modules/org-noter-config.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/org-noter-config.el b/modules/org-noter-config.el
index 253ed892e..9a2afe9a1 100644
--- a/modules/org-noter-config.el
+++ b/modules/org-noter-config.el
@@ -52,10 +52,9 @@
;; If you want to use the org-noter-pdftools integration features
(when (featurep 'org-noter-integration)
- (setq org-noter-use-pdftools-link-location t)
- (setq org-noter-use-org-id t)
- (setq org-noter-use-unique-org-id t))
- (org-noter-enable-org-roam-integration)
+ (setq org-noter-use-pdftools-link-location t)
+ (setq org-noter-use-org-id t)
+ (setq org-noter-use-unique-org-id t))
(org-noter-enable-org-roam-integration))