doomemacs/modules/lang/yaml/config.el

12 lines
358 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 (modulep! +lsp)
(add-hook 'yaml-mode-local-vars-hook #'lsp! 'append))
(when (modulep! +tree-sitter)
(add-hook 'yaml-mode-local-vars-hook #'tree-sitter! 'append))
:config
(setq-hook! 'yaml-mode-hook tab-width yaml-indent-offset))