Move helm-css-scss package to lang/web/+css
This commit is contained in:
parent
e89e3bd15e
commit
48c77b1126
4 changed files with 13 additions and 6 deletions
|
@ -163,11 +163,6 @@ be negative.")
|
||||||
(setq helm-bookmark-show-location t)
|
(setq helm-bookmark-show-location t)
|
||||||
|
|
||||||
|
|
||||||
;; `helm-css-scss' -- https://github.com/ShingoFukuyama/helm-css-scss
|
|
||||||
(setq helm-css-scss-split-direction #'split-window-vertically
|
|
||||||
helm-css-scss-split-with-multiple-windows t)
|
|
||||||
|
|
||||||
|
|
||||||
;; `helm-files'
|
;; `helm-files'
|
||||||
(after! helm-files
|
(after! helm-files
|
||||||
(setq helm-boring-file-regexp-list
|
(setq helm-boring-file-regexp-list
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
(package! helm-ag)
|
(package! helm-ag)
|
||||||
(package! helm-c-yasnippet)
|
(package! helm-c-yasnippet)
|
||||||
(package! helm-company)
|
(package! helm-company)
|
||||||
(package! helm-css-scss)
|
|
||||||
(package! helm-describe-modes :recipe (:fetcher github :repo "emacs-helm/helm-describe-modes"))
|
(package! helm-describe-modes :recipe (:fetcher github :repo "emacs-helm/helm-describe-modes"))
|
||||||
(package! helm-projectile)
|
(package! helm-projectile)
|
||||||
(package! swiper-helm)
|
(package! swiper-helm)
|
||||||
|
|
|
@ -31,6 +31,17 @@
|
||||||
:localleader :n ";" #'counsel-css))
|
:localleader :n ";" #'counsel-css))
|
||||||
|
|
||||||
|
|
||||||
|
(def-package! helm-css-scss
|
||||||
|
:when (featurep! :completion helm)
|
||||||
|
:defer t
|
||||||
|
:init
|
||||||
|
(map! :map* (css-mode-map scss-mode-map less-css-mode-map)
|
||||||
|
:localleader :n ";" #'helm-css-scss)
|
||||||
|
:config
|
||||||
|
(setq helm-css-scss-split-direction #'split-window-vertically
|
||||||
|
helm-css-scss-split-with-multiple-windows t))
|
||||||
|
|
||||||
|
|
||||||
(def-package! css-mode ; built-in
|
(def-package! css-mode ; built-in
|
||||||
:defer t
|
:defer t
|
||||||
:config
|
:config
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
(package! rainbow-mode)
|
(package! rainbow-mode)
|
||||||
(when (featurep! :completion ivy)
|
(when (featurep! :completion ivy)
|
||||||
(package! counsel-css))
|
(package! counsel-css))
|
||||||
|
(when (featurep! :completion helm)
|
||||||
|
(package! helm-css-scss))
|
||||||
|
|
||||||
;; +html.el
|
;; +html.el
|
||||||
(package! emmet-mode)
|
(package! emmet-mode)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue