diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-02-18 01:59:05 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-02-18 01:59:05 -0500 |
commit | ff65eff6f70058d06057e5d796460eeeb9b0234d (patch) | |
tree | ddd775bde435c900c44e79d1f3914e1a45ed444d | |
parent | a8fc1f258874c02321c6eea74ae2b3ca0a6011d5 (diff) | |
download | emacs.d-ff65eff6f70058d06057e5d796460eeeb9b0234d.tar.gz |
Don't indent in Org Contacts capture template
I've set org-adapt-indentation to nil (b8ffd041f).
-rw-r--r-- | lisp/init-org.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el index e5fad96..85cd684 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -561,7 +561,11 @@ global value. A numeric prefix sets MAXLEVEL (defaults to 2)." (add-to-list 'org-capture-templates '("a" "email address" entry (file+headline "~/notes/contacts.org" "Inbox") - "** %(org-contacts-template-name)\n :PROPERTIES:\n :EMAIL: %(org-contacts-template-email)\n :END:")) + " +** %(org-contacts-template-name) +:PROPERTIES: +:EMAIL: %(org-contacts-template-email) +:END:")) ;;; Org in other modes |