add yaml mode
This commit is contained in:
parent
fe693b8ccd
commit
0dfa4ae2d5
1 changed files with 5 additions and 0 deletions
5
init.el
5
init.el
|
@ -111,6 +111,11 @@
|
||||||
;; langs
|
;; langs
|
||||||
(use-package go-mode :ensure t
|
(use-package go-mode :ensure t
|
||||||
:config (add-to-list 'auto-mode-alist '("\\.go\\'" . go-mode)))
|
: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
|
;; code-with-fun
|
||||||
(use-package company
|
(use-package company
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue