aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-yaml.el
blob: 47c533cb463373375e521c16f0c14a0772108d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
;;; init-yaml.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;

;;; Code:
;; yaml-mode
(use-package yaml-mode
  :mode ("\\.yml\\'" . yaml-mode))

(provide 'init-yaml)
;;; init-yaml.el ends here