summaryrefslogtreecommitdiffstats
path: root/lisp/init-org.el
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2023-04-04 19:16:43 +0200
committerMartin Polden <mpolden@mpolden.no>2023-04-04 19:16:43 +0200
commit0860da0becaae8cfd50e946be13bca22d714592a (patch)
treed5589c27ed70f77b7db146f57dc9872edfc755bd /lisp/init-org.el
parent9c893c9eca63e5c3c6715bf3364b3ecc5e31fc12 (diff)
org: remove unnecessary property
Diffstat (limited to 'lisp/init-org.el')
-rw-r--r--lisp/init-org.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index 7551aa0..c1568f8 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -36,11 +36,9 @@
;; capture template including title, date and time
(setq org-capture-templates '(("i" "Inbox" entry (file "inbox.org")
- "* TODO %?\n%U"
- :empty-lines-after 1)
+ "* TODO %?\n%U")
("t" "Tasks" entry (file+headline "notes.org" "Tasks")
- "* TODO %?\n%U"
- :empty-lines-after 1)))
+ "* TODO %?\n%U")))
;; cycle opens archived trees
(setq org-cycle-open-archived-trees t)