summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-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)