From f499ea3bf76fa552bccefbacf2644331f655fb29 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 23 Oct 2025 00:12:41 -0500 Subject: refactor:org-modules: Improve org-mode configuration Remove redundant declarations and reorganize settings for clarity. Centralize org-mode customizations and use `use-package` for streamlined loading and configuration. Remove backward-compatible safeguards and reduce inline comments for cleaner code. Optimize key mappings and simplify the setup of org-related packages. --- modules/org-noter-config.el | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'modules/org-noter-config.el') diff --git a/modules/org-noter-config.el b/modules/org-noter-config.el index a5e1f7fc..253ed892 100644 --- a/modules/org-noter-config.el +++ b/modules/org-noter-config.el @@ -1,10 +1,14 @@ ;;; org-noter-config.el --- -*- coding: utf-8; lexical-binding: t; -*- ;;; Commentary: -;; Open a PDF or DjVu file, hit F6, and org-noter splits the frame with notes beside the document. -;; Notes live under ~/sync/org-noter/reading-notes.org by default; adjust the path when prompted the first time. -;; Use org-noter capture keys while annotating—`C-c n c` checks linked documents, and `C-c n u` rewrites stale paths after moving files. -;; Sessions resume where you stopped thanks to automatic location saves. +;; Org-noter configuration for taking notes on PDF and DjVu documents. Workflow: +;; open a PDF/DjVu file in Emacs, press F6 to start org-noter session, frame +;; splits with document on one side and notes on the other, notes are saved to +;; ~/sync/org-noter/reading-notes.org by default, and position is automatically +;; saved when closing session. Features include integration with pdf-tools and +;; djvu, org-roam integration for linking notes, automatic session resumption at +;; last position, inserting highlighted text into notes, notes following +;; TASK: Aborted Commentary ;;; Code: @@ -24,7 +28,6 @@ (use-package org-noter :after (:any org pdf-tools djvu) :commands org-noter - :bind ("" . org-noter) :config ;; Basic settings (setq org-noter-always-create-frame nil) -- cgit v1.2.3