summaryrefslogtreecommitdiff
path: root/.config/emacs
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-11 06:24:56 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-08-11 06:24:56 +0200
commit5273c3d1e6af2f91d81caad602ed1dd568a89c0e (patch)
tree99abdbd37beebd46cf5f0eecaa4fadccb0f439bb /.config/emacs
parenta6102f14818965845808e7092bc8a53646dcd782 (diff)
emacs: Enable ‘org-indent-mode’ in ‘org-mode’
Diffstat (limited to '.config/emacs')
-rw-r--r--.config/emacs/config.org13
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