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.
This commit is contained in:
parent
89b83f2457
commit
c58077810d
15 changed files with 59 additions and 57 deletions
|
@ -23,7 +23,7 @@
|
|||
'("tidy" "-q" "-indent"
|
||||
"--tidy-mark" "no"
|
||||
"--drop-empty-elements" "no"
|
||||
"--show-body-only" "auto"
|
||||
"--show-body-only" "auto" ; don't inject html/body tags
|
||||
("--indent-spaces" "%d" tab-width)
|
||||
("--indent-with-tabs" "%s" (if indent-tabs-mode "yes" "no"))
|
||||
("-xml" (memq major-mode '(nxml-mode xml-mode))))
|
||||
|
|
|
@ -1,14 +1,6 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/web/packages.el
|
||||
|
||||
;; requires js-beautify stylelint stylelint-scss
|
||||
|
||||
(package! rainbow-mode)
|
||||
(when (featurep! :completion ivy)
|
||||
(package! counsel-css))
|
||||
(when (featurep! :completion helm)
|
||||
(package! helm-css-scss))
|
||||
|
||||
;; +html.el
|
||||
(package! emmet-mode)
|
||||
(package! haml-mode)
|
||||
|
@ -22,4 +14,8 @@
|
|||
(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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue