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