dotfiles/emacs/.emacs.d/config/init-yaml.el

10 lines
259 B
EmacsLisp
Raw Normal View History

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