diff --git a/contrib/lang/html/packages.el b/contrib/lang/html/packages.el index 68b06d293..e74e3e596 100644 --- a/contrib/lang/html/packages.el +++ b/contrib/lang/html/packages.el @@ -21,6 +21,8 @@ tagedit web-mode yasnippet + haml-mode + slim-mode ) "List of all packages to install and/or initialize. Built-in packages which require an initialization must be listed explicitly in the list.") @@ -86,3 +88,11 @@ which require an initialization must be listed explicitly in the list.") :defer t :init (add-hook 'css-mode-hook 'spacemacs/load-yasnippet))) + +(defun html/init-haml-mode () + (use-package haml-mode + :defer t)) + +(defun html/init-slim-mode () + (use-package slim-mode + :defer t))