One thing that has driven me mad over the last months was the default indentation that Org Mode applies whenever you write something below a headline. Basically, content is always indented to visualise the hierarchy of the content. This is useful for outlining but I mostly use to Org for general note-taking (and even long-form writing from time to time) and there this default behaviour simply didnโt fit my writing style ๐
So this would be Orgโs default behaviour:
* Chapter
level 1 indentation
** Deeper
level 2 indentation
And what I want most of the time is this:
* Chapter
some content
** Deeper
no indentation here
This just works better for me especially when dealing with things like src-blocks etc. which have slightly different semantics when being indented (whitespaces FTW!).
Luckily, other folks have also had this issue and documented it for instance on StackExchange. Turns out that you can toggle this automatic indentation using the org-adapt-indentation
flag:
" enable indentation
(setq org-adapt-indentation t)
" disable indentation
(setq org-adapt-indentation nil)
This variable can also have other values but nil
is doing exactly what I want right now ๐
That being said, I might add a quick keyboard-toggle for this flag just in case I need to do more outlining again in the futureโฆ
Do you want to give me feedback about this article in private? Please send it to comments@zerokspot.com.
Alternatively, this website also supports Webmentions. If you write a post on a blog that supports this technique, I should get notified about your link ๐