feat: Add css-mode config.

Set indent spaces to 2 instead the 4 (the default value).
This commit is contained in:
KJ 2024-05-09 13:30:30 -04:00
parent e663c02d97
commit e54a28bb9d

View File

@ -20,6 +20,11 @@
)
(use-package css-mode
:defer t
:ensure nil
:config
(setq css-indent-offset 2))
(use-package auto-rename-tag
:ensure (:host github :repo "jcs-elpa/auto-rename-tag")