summaryrefslogtreecommitdiffstats
path: root/lisp/init-yaml.el
blob: 00acdf331fad88335b1d105e6f89f282dc329334 (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)