doomemacs/modules/lang/web/packages.el
Henrik Lissner c58077810d
General refactor of modules
General code and comment improvements.

Also, removed the :desc's for csv-mode because map! is currently unable
to set which-key descriptions mode-locally, and should be avoided for
anything but global keybinds. This will be fixed when General is
introduced into Doom.
2018-09-09 09:58:20 -04:00

22 lines
476 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/web/packages.el
;; +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)))
;; +css.el
(package! less-css-mode)
(package! sass-mode)
(package! stylus-mode)
(package! rainbow-mode)
(when (featurep! :completion ivy)
(package! counsel-css))
(when (featurep! :completion helm)
(package! helm-css-scss))