summaryrefslogtreecommitdiffstats
path: root/lisp/init-yaml.el
blob: ce81d614657c57818533107a69a7293e799d6db5 (plain) (blame)
1
2
3
4
5
6
7
(use-package yaml-mode
  :ensure t
  :mode
  ;; ansible group_vars and host_vars
  ("/\\(group\\|host\\)_vars/" . yaml-mode))

(provide 'init-yaml)