emacs-personal/modules/init-yaml.el
2019-01-22 15:45:41 -05:00

12 lines
219 B
EmacsLisp

;;; 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