diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-11 06:24:56 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-11 06:24:56 +0200 |
commit | 5273c3d1e6af2f91d81caad602ed1dd568a89c0e (patch) | |
tree | 99abdbd37beebd46cf5f0eecaa4fadccb0f439bb | |
parent | a6102f14818965845808e7092bc8a53646dcd782 (diff) |
emacs: Enable ‘org-indent-mode’ in ‘org-mode’
-rw-r--r-- | .config/emacs/config.org | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 6f61a05..528d7d7 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -938,3 +938,16 @@ version numbers to the backup names — it doesn’t start using a VCS. kept-old-versions 6) #+END_SRC + +** Mode Specific Settings + +*** Org-Mode + +I really enjoy using ~org-indent-mode~. It indents the contents of the +org-buffer to keep everything looking nice and structured. + +#+BEGIN_SRC elisp + + (add-hook 'org-mode-hook #'org-indent-mode) + +#+END_SRC |