2017-02-19 18:57:16 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/web/packages.el
|
|
|
|
|
2017-03-04 20:49:05 -05:00
|
|
|
(package! rainbow-mode)
|
2017-03-23 15:47:07 -04:00
|
|
|
(package! web-beautify)
|
2017-03-04 20:49:05 -05:00
|
|
|
(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
|
2017-02-23 00:06:12 -05:00
|
|
|
(package! company-web)
|
|
|
|
(package! emmet-mode)
|
|
|
|
(package! haml-mode)
|
|
|
|
(package! pug-mode)
|
|
|
|
(package! web-mode)
|
2017-02-19 18:57:16 -05:00
|
|
|
|
|
|
|
;; +css.el
|
2017-02-23 00:06:12 -05:00
|
|
|
(package! less-css-mode)
|
|
|
|
(package! sass-mode)
|
|
|
|
(package! stylus-mode)
|
2017-02-19 18:57:16 -05:00
|
|
|
|
2017-03-25 18:41:29 -04:00
|
|
|
;;
|
|
|
|
(def-bootstrap! web
|
|
|
|
:requires nodejs
|
|
|
|
(unless (executable-find "js-beautify")
|
|
|
|
(sh "npm -g install js-beautify"))
|
|
|
|
(unless (executable-find "stylelint")
|
|
|
|
(sh "npm -g install stylelint stylelint-scss")))
|