From bb5e2eef395b094925ceca5c5a6d83270cba213d Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Sat, 4 Mar 2023 19:20:56 +0100 Subject: Word-wrap Markdown files --- tw/home/files/emacs-init.el | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tw/home/files/emacs-init.el') diff --git a/tw/home/files/emacs-init.el b/tw/home/files/emacs-init.el index 1fce11ba..8cf6c20c 100644 --- a/tw/home/files/emacs-init.el +++ b/tw/home/files/emacs-init.el @@ -63,6 +63,7 @@ (mapc (apply-partially #'add-to-list 'auto-mode-alist) `((,(rx (or bos "/") "PKGBUILD" eos) . sh-mode) (,(rx ".install" eos) . sh-mode) + (,(rx (or bos "/") "COMMIT_EDITMSG" eos) . text-mode) (,(rx bos "/tmp/neomutt-") . mail-mode) (,(rx ".eml" eos) . mail-mode) (,(rx "." (1+ anything) "rc" eos) . conf-unix-mode))) @@ -75,6 +76,11 @@ (add-hook 'mail-mode-hook #'auto-fill-mode) +(defun tw/enable-word-wrap () + "Enable word wrapping." + (toggle-word-wrap +1)) +(add-hook 'markdown-mode-hook #'tw/enable-word-wrap) + ;; `use-package' requirements. (require 'package) (package-initialize t) -- cgit v1.2.3