summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2023-12-31 09:05:59 -0500
committerKjetil Orbekk <kj@orbekk.com>2023-12-31 09:05:59 -0500
commit151ce93f4f0795ce7e1e6aa0e4965967525e13d8 (patch)
treebee07d7eb4ae83a84516d032bbfc2a1adc1ece7e
parenta6826d37b3c7b14198cda4bc8c2e270dfbf8d2a2 (diff)
config
-rw-r--r--emacs/.config/emacs-kj/lisp/kj-org.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/emacs/.config/emacs-kj/lisp/kj-org.el b/emacs/.config/emacs-kj/lisp/kj-org.el
index 471d6dc..b6fda9c 100644
--- a/emacs/.config/emacs-kj/lisp/kj-org.el
+++ b/emacs/.config/emacs-kj/lisp/kj-org.el
@@ -40,9 +40,6 @@ Can link to more than one message, if so all matching messages are shown."
(require 'notmuch)
(notmuch-show (org-link-unescape search)))
-
-
-
(org-add-link-type "notmuch-search" 'org-notmuch-search-open)
(add-hook 'org-store-link-functions 'org-notmuch-search-store-link)
@@ -235,6 +232,7 @@ Can link to more than one message, if so all matching messages are shown."
(use-package org-pomodoro
:ensure t
+ :after org
:commands (org-pomodoro)
:config
(setq
@@ -246,4 +244,8 @@ Can link to more than one message, if so all matching messages are shown."
:bind
(("C-c o p" . org-pomodoro)))
+(use-package org-tidy
+ :after org
+ :hook (org-mode . org-tidy-mode))
+
(provide 'kj-org)