summaryrefslogtreecommitdiff
path: root/emacs-config.org
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2025-10-19 13:22:29 +0100
committerBlake Romero <blake@blkrom.com>2025-10-19 13:22:29 +0100
commit052b6f9acdcca3610198f501798898786bbcf678 (patch)
tree66f1c0dda9c4b82974212855c1a65af71185b80c /emacs-config.org
parentcc6cea365a63938081f8743b1bd5b109f17ed7b0 (diff)
Ensure org-timer auto-loads on command
Diffstat (limited to 'emacs-config.org')
-rw-r--r--emacs-config.org13
1 files changed, 12 insertions, 1 deletions
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.
<<org-agenda-settings>>)
#+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
-