doomemacs/modules/lang/web/packages.el

25 lines
489 B
EmacsLisp
Raw Normal View History

2017-02-19 18:57:16 -05:00
;; -*- no-byte-compile: t; -*-
;;; lang/web/packages.el
;; requires js-beautify stylelint stylelint-scss
(package! rainbow-mode)
(package! web-beautify)
(when (featurep! :completion ivy)
(package! counsel-css))
2017-02-19 18:57:16 -05:00
;; +html.el
(package! emmet-mode)
(package! haml-mode)
(package! pug-mode)
(package! slim-mode)
(when (package! web-mode)
(when (featurep! :completion company)
(package! company-web)))
2017-02-19 18:57:16 -05:00
;; +css.el
(package! less-css-mode)
(package! sass-mode)
(package! stylus-mode)
2017-02-19 18:57:16 -05:00