Add support yaml-mode
This commit is contained in:
parent
f18582dfd2
commit
300d7e70f6
@ -11,7 +11,7 @@
|
||||
'(anzu-search-threshold 1000)
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(editorconfig whitespace-cleanup-mode rainbow-mode scss-mode sass-mode less-css-mode ac-php smarty-mode php-mode pkgbuild-mode markdown-mode flycheck anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line nlinum sublime-themes))))
|
||||
(yaml-mode editorconfig whitespace-cleanup-mode rainbow-mode scss-mode sass-mode less-css-mode ac-php smarty-mode php-mode pkgbuild-mode markdown-mode flycheck anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line nlinum sublime-themes))))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
|
1
init.el
1
init.el
@ -47,6 +47,7 @@
|
||||
(require 'init-less)
|
||||
(require 'init-sass)
|
||||
(require 'init-scss)
|
||||
(require 'init-yaml)
|
||||
;; Plus
|
||||
(require 'init-rainbow)
|
||||
|
||||
|
4
lisp/init-yaml.el
Normal file
4
lisp/init-yaml.el
Normal file
@ -0,0 +1,4 @@
|
||||
;; yaml-mode
|
||||
(require-package 'yaml-mode)
|
||||
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
|
||||
(provide 'init-yaml)
|
Loading…
x
Reference in New Issue
Block a user