doomemacs/modules/lang/yaml/config.el

10 lines
253 B
EmacsLisp
Raw Normal View History

;;; lang/yaml/config.el -*- lexical-binding: t; -*-
(use-package! yaml-mode
2020-04-24 12:14:00 +08:00
:mode "Procfile\\'"
:init
(when (featurep! +lsp)
(add-hook 'yaml-mode-local-vars-hook #'lsp!))
:config
(setq-hook! 'yaml-mode-hook tab-width yaml-indent-offset))