add yaml mode

This commit is contained in:
Stefan Schwarz 2019-08-05 18:00:00 +02:00
parent fe693b8ccd
commit 0dfa4ae2d5

View file

@ -111,6 +111,11 @@
;; langs
(use-package go-mode :ensure t
:config (add-to-list 'auto-mode-alist '("\\.go\\'" . go-mode)))
(use-package yaml-mode :ensure t
:config
(add-to-list 'auto-mode-alist '("\\.yaml\\'" . yaml-mode))
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
)
;; code-with-fun
(use-package company