summaryrefslogtreecommitdiffstats
path: root/lisp/init-yaml.el
blob: 68c9638e20e528de1d37c5dc37be01d230008510 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
;;; init-yaml.el --- configure yaml language support  -*- lexical-binding:t -*-
;;; Commentary:
;;; Code:

(use-package yaml-mode
  :mode ("\\.yml\\'" . yaml-mode)
  :ensure t)

(provide 'init-yaml)

;;; init-yaml.el ends here