Support yaml in .yaml files

This commit is contained in:
Jakub 2025-10-28 09:13:25 +08:00
parent 40790fde5a
commit 864c494037

View file

@ -26,6 +26,7 @@
(use-package yaml-mode
:config
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
(add-to-list 'auto-mode-alist '("\\.yaml\\'" . yaml-mode))
(add-hook 'yaml-mode-hook
'(lambda ()
(define-key yaml-mode-map "\C-m" 'newline-and-indent))))