Disable autp-fill-mode for yaml

This commit is contained in:
Marcus Kammer 2023-10-28 10:02:07 +02:00
parent c826ab0403
commit 7d264527ae
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -493,7 +493,12 @@ Uses `mk/hyperspec-dir-locations' to find the directory."
(use-package yaml-mode
:defer t
:mode "\\.yml\\'")
:mode "\\.yml\\'"
:config
(defun disable-auto-fill ()
(auto-fill-mode -1))
:hook
(yaml-mode . disable-auto-fill))
(use-package csv-mode
:defer t