From e79f0118130355f5ba4ed6b197ccd5b14c13ce27 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Mon, 2 Jan 2023 00:07:46 -0500 Subject: [PATCH] Add org-tempo to org-modules instead of requiring it I think requiring it broke at some point? This new method seems more correct anyway --- .emacs.d/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 25806af..0e3a017 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -202,7 +202,7 @@ ("M-N" . org-metadown)) :map org-src-mode-map ("C-z" . org-src-export-to-pdf)) :config - (use-package org-tempo :demand) ; enable org-tempo templates + (add-to-list 'org-modules 'org-tempo t) ; enable org-tempo templates ;; Make windmove work in org-mode: (add-hook 'org-shiftup-final-hook 'windmove-up)