doomemacs/modules/lang/web/packages.el

24 lines
518 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 :recipe (:fetcher github :repo "hlissner/emacs-counsel-css")))
2017-02-19 18:57:16 -05:00
;; +html.el
(package! emmet-mode)
(package! haml-mode)
(package! pug-mode)
(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