1
0
Fork 0

Add flyspell-mode to markdown-mode.

This commit is contained in:
Lorenzo Good 2025-12-31 19:20:16 -06:00
parent 093e5c5bbc
commit 1928ab6900
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0

View file

@ -178,7 +178,9 @@ If the new path's directories does not exist, create them."
;; Language specific major modes.
(use-package markdown-mode
:ensure t
:hook ((markdown-mode . visual-line-mode)))
:hook (markdown-mode . (lambda ()
(visual-line-mode 1)
(flyspell-mode 1))))
(use-package yaml-mode
:ensure t)