10 lines
253 B
EmacsLisp
10 lines
253 B
EmacsLisp
|
;;; lang/yaml/config.el -*- lexical-binding: t; -*-
|
||
|
|
||
|
(use-package! yaml-mode
|
||
|
:hook "Procfile\\'"
|
||
|
:init
|
||
|
(when (featurep! +lsp)
|
||
|
(add-hook 'yaml-mode-local-vars-hook #'lsp!))
|
||
|
:config
|
||
|
(setq-hook! 'yaml-mode-hook tab-width yaml-indent-offset))
|