diff options
| author | Raul Benencia <raul@thousandeyes.com> | 2026-03-31 10:37:18 -0700 |
|---|---|---|
| committer | Raul Benencia <raul@thousandeyes.com> | 2026-03-31 10:37:18 -0700 |
| commit | 45332a3aa41d4f7155d7816cea56bed5d04624af (patch) | |
| tree | 889c6f92f78dd78278054fcad4649be80391b39b /.emacs.d | |
| parent | 7fd3631f7c5e65d875b2cf185a4647f9c40f73c9 (diff) | |
Diffstat (limited to '.emacs.d')
| -rw-r--r-- | .emacs.d/rul-emacs.org | 9 | ||||
| -rw-r--r-- | .emacs.d/rul-lisp/packages/rul-org.el | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/.emacs.d/rul-emacs.org b/.emacs.d/rul-emacs.org index 1b984d8..3fb06b3 100644 --- a/.emacs.d/rul-emacs.org +++ b/.emacs.d/rul-emacs.org @@ -1130,10 +1130,10 @@ My org mode configuration is quite big, so I split it across multiple files. (org-tempus-mode 1)) (use-package org-remark-global-tracking - ;; It is recommended that `org-remark-global-tracking-mode' be - ;; enabled when Emacs initializes. You can set it in - ;; `after-init-hook'. - :hook after-init + :ensure org-remark + ;; `org-remark-global-tracking' is shipped by the `org-remark' + ;; package, so ensure the package exists before loading this feature. + :hook (after-init . org-remark-global-tracking-mode) :config ;; Selectively keep or comment out the following if you want to use ;; extensions for Info-mode, EWW, and NOV.el (EPUB) respectively. @@ -1141,6 +1141,7 @@ My org mode configuration is quite big, so I split it across multiple files. (use-package org-remark-nov :after nov :config (org-remark-nov-mode +1))) (use-package org-remark + :ensure t :bind (;; :bind keyword also implicitly defers org-remark itself. ;; Keybindings before :map is set for global-map. Adjust the keybinds ;; as you see fit. diff --git a/.emacs.d/rul-lisp/packages/rul-org.el b/.emacs.d/rul-lisp/packages/rul-org.el index 7c33922..979fdab 100644 --- a/.emacs.d/rul-lisp/packages/rul-org.el +++ b/.emacs.d/rul-lisp/packages/rul-org.el @@ -183,10 +183,10 @@ (org-tempus-mode 1)) (use-package org-remark-global-tracking - ;; It is recommended that `org-remark-global-tracking-mode' be - ;; enabled when Emacs initializes. You can set it in - ;; `after-init-hook'. - :hook after-init + :ensure org-remark + ;; `org-remark-global-tracking' is shipped by the `org-remark' + ;; package, so ensure the package exists before loading this feature. + :hook (after-init . org-remark-global-tracking-mode) :config ;; Selectively keep or comment out the following if you want to use ;; extensions for Info-mode, EWW, and NOV.el (EPUB) respectively. @@ -194,6 +194,7 @@ (use-package org-remark-nov :after nov :config (org-remark-nov-mode +1))) (use-package org-remark + :ensure t :bind (;; :bind keyword also implicitly defers org-remark itself. ;; Keybindings before :map is set for global-map. Adjust the keybinds ;; as you see fit. |
