From 9bc2757caa95ea0f0ea28d3b27240647196bf9ba Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Sun, 26 May 2024 16:08:00 +1200 Subject: [PATCH] emacs: add auto-fill-mode to org-mode-hook --- .emacs.d/init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 98ed4bd..3f17610 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -94,6 +94,7 @@ One will be created if none exist." (add-hook 'markdown-mode-hook 'auto-fill-mode) (add-hook 'nroff-mode-hook 'auto-fill-mode) (add-hook 'nroff-mode-hook 'variable-pitch-mode) +(add-hook 'org-mode-hook 'auto-fill-mode) ;; file extensions (add-to-list 'auto-mode-alist '("\\.yuck\\'" . lisp-mode))