diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-01-25 14:49:59 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-01-25 14:49:59 -0500 |
commit | 879e7ff0c9099ca420682f52cb462b1504a47020 (patch) | |
tree | 82354879015ceef8980872c92edfd684d1fa2a3f /init | |
parent | 377abd682c69fe0f121a85551e061fe3935a15bf (diff) | |
download | emacs.d-879e7ff0c9099ca420682f52cb462b1504a47020.tar.gz |
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.
Diffstat (limited to 'init')
-rw-r--r-- | init/km-org.el | 3 |
1 files changed, 2 insertions, 1 deletions
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") |