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.
21 lines
476 B
EmacsLisp
21 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))
|