From 052b6f9acdcca3610198f501798898786bbcf678 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Sun, 19 Oct 2025 13:22:29 +0100 Subject: Ensure org-timer auto-loads on command --- emacs-config.org | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/emacs-config.org b/emacs-config.org index c7d705f..ae690d2 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -97,6 +97,7 @@ Vertical minibuffer. :PROPERTIES: :ID: 8818a835-08ef-47f8-bcbf-83dd210725a0 :END: + Automatically move cursor point on window split. #+begin_src elisp (advice-add 'split-window-below @@ -557,6 +558,17 @@ Case-sensitive search by default and show match count in minibuffer. <>) #+end_src +Ensure timer auto-loads package. +#+begin_src elisp + (autoload 'org-timer-start "org-timer") + (autoload 'org-timer-set-timer "org-timer") + (autoload 'org-timer-pause-or-continue "org-timer") + (autoload 'org-timer "org-timer") + (autoload 'org-timer-start "org-timer") + (autoload 'org-timer-set-timer "org-timer") + (autoload 'org-timer-stop "org-timer") +#+end_src + *** Org Settings :PROPERTIES: :header-args:elisp: :tangle no :noweb-ref org-settings :results none @@ -2298,4 +2310,3 @@ Display nerd icons in ibuffer. :after ibuffer :hook ibuffer-mode) #+end_src - -- cgit