From 879e7ff0c9099ca420682f52cb462b1504a47020 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sat, 25 Jan 2014 14:49:59 -0500 Subject: Correct org-blank-before-new-entry setting 377abd6 sets this with one value, but it needs to be an alist and have a values for both heading and plain-list-item. --- init/km-org.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'init') diff --git a/init/km-org.el b/init/km-org.el index 4975b5a..4459259 100644 --- a/init/km-org.el +++ b/init/km-org.el @@ -9,7 +9,8 @@ (setq org-goto-interface 'outline-path-completion) (setq org-src-fontify-natively t) (setq org-special-ctrl-k t) -(setq org-blank-before-new-entry t) +(setq org-blank-before-new-entry '((heading . t) + (plain-list-item . auto))) (setq org-capture-templates '(("t" "task" entry (file+headline "~/notes/tasks.org" "Inbox") -- cgit v1.2.3