diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-02-13 23:47:21 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-02-13 23:47:21 -0500 |
commit | b8ffd041f50680a233b6741624ab90d5014ac8ea (patch) | |
tree | 12bf471613d78dc2174b271fa72696820ce04ec6 | |
parent | f6d1f2c3b7a27eeb1ec963a851a68b0a57cb89ea (diff) | |
download | emacs.d-b8ffd041f50680a233b6741624ab90d5014ac8ea.tar.gz |
Don't adapt Org indentation
I've kept this as non-nil because I prefer planning info and drawers
to be indented at the level of headings. However, I don't indent
paragraphs of text (mostly for diffing purposes).
With recent Org changes [1-3], mixing these styles doesn't work well
because structure-modifying commands now adjust the paragraph
indentation even if the text is at column 0.
[1] cba2f0a2a3024ae5bf71e1a12ba99778a92902a2
[2] 83d8a2b16d1efc32f868897559452c0922906c67
[3] http://thread.gmane.org/gmane.emacs.orgmode/93597
-rw-r--r-- | lisp/init-org.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el index 3f44673..1382702 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -14,6 +14,7 @@ org-special-ctrl-k t org-insert-heading-respect-content t org-M-RET-may-split-line nil + org-adapt-indentation nil org-blank-before-new-entry '((heading . t) (plain-list-item . auto))) (setq org-link-search-must-match-exact-headline nil) |