From 46101cf1a222b812d896e260c3f8eaf8f6b2b77b Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Fri, 9 Mar 2018 12:14:39 +0100 Subject: [PATCH] Emacs: fixed org-bullets hook --- emacs/emacs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs/emacs.el b/emacs/emacs.el index 374f666..8b5659e 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -251,8 +251,8 @@ ;; org-bullets ;; Show bullets in org-mode as UTF-8 characters (use-package org-bullets - :hook - (org-mode-hook . (lambda () (org-bullets-mode 1)))) + :after org + :config (add-hook 'org-mode-hook #'org-bullets-mode)) ;; undo-tree ;; Treat undo history as a tree