From f8192fb3116769113ffc92a7c8289a5ed9c47ccf Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Sat, 16 Apr 2016 10:04:33 -0500 Subject: [PATCH] Fix a recursion limit error for org-bullets --- emacs.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs.org b/emacs.org index ba320aa..ca27fe5 100644 --- a/emacs.org +++ b/emacs.org @@ -606,13 +606,13 @@ Org-mode keybindings and settings, pretty sparse really. ("C-c c" . org-capture) ("C-c l" . org-store-link) ("C-c p" . org-latex-export-to-pdf)) + :init (use-package org-bullets) :config (progn (custom-set-variables '(org-log-done t) '(org-hide-leading-stars t) ) - (use-package org-bullets :ensure t) (org-reload) ) )