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

  :config
  ;; disable electric indent
  (add-hook 'yaml-mode-hook
            (lambda () (setq-local electric-indent-mode nil))))

(provide 'init-yaml-mode)