[package] add tailwind css lsp

This commit is contained in:
SouthFox 2023-08-18 05:52:18 +08:00
parent 744f81dc98
commit 46f6e1ceae
3 changed files with 10 additions and 1 deletions

View file

@ -485,3 +485,5 @@
(add-hook 'clojure-mode-hook 'enable-paredit-mode)
(add-hook 'emacs-lisp-mode-hook 'enable-paredit-mode)
(add-hook 'cider-repl-mode-hook 'enable-paredit-mode))
(use-package! lsp-tailwindcss)

View file

@ -660,7 +660,6 @@
"--insecure")))
#+end_src
* Clojure
#+begin_src emacs-lisp
(use-package! flycheck-clj-kondo
@ -679,3 +678,8 @@
(add-hook 'emacs-lisp-mode-hook 'enable-paredit-mode)
(add-hook 'cider-repl-mode-hook 'enable-paredit-mode))
#+end_src
* Tailwind css
#+begin_src emacs-lisp
(use-package! lsp-tailwindcss)
#+end_src

View file

@ -88,3 +88,6 @@
(package! cider)
(package! flycheck-clj-kondo)
(package! clj-refactor)
(package! lsp-tailwindcss
:recipe (:host github :repo "merrickluo/lsp-tailwindcss"))