From 0dfa4ae2d5de31eabc30b13a43b04c6c4b627a1b Mon Sep 17 00:00:00 2001 From: Stefan Schwarz Date: Mon, 5 Aug 2019 18:00:00 +0200 Subject: [PATCH] add yaml mode --- init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.el b/init.el index e342feb..4b9ff77 100644 --- a/init.el +++ b/init.el @@ -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