diff options
-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 |