dotfiles/emacs/.emacs.d/config/init-yaml.el
2021-02-20 22:01:34 -05:00

10 lines
259 B
EmacsLisp

;; -*- lexical-binding: t; -*-
;; YAML - literally the worst but still holds an important place in my life
(use-package yaml-mode
:mode ("\\.yaml\\'" "\\.yml\\'")
:config
(add-hook 'yaml-mode-hook #'highlight-indent-guides-mode))
(provide 'init-yaml)