From d2004559e4da89248565ff74257fe481e1a5b60d Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Fri, 20 Jun 2025 19:54:50 -0700 Subject: [PATCH] Modify org eager loading to happen after org-bullets loaded --- emacs/init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emacs/init.el b/emacs/init.el index 3eee28b..5765f01 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -694,10 +694,10 @@ (use-package org-bullets :ensure t :config - (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))) - -;; Eagerly load org-mode -(with-temp-buffer (org-mode)) + (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))) + ;; Eagerly load org-mode + (with-temp-buffer + (org-mode))) (defun my/org-clear-all () (interactive)