docs: formatting

This commit is contained in:
2025-11-19 12:38:11 +01:00
parent 3fe9b05623
commit 9b266c444d

View File

@@ -1510,9 +1510,7 @@ configuration.
:defer t :defer t
:after lsp :after lsp
:init (setq lsp-tailwindcss-add-on-mode t) :init (setq lsp-tailwindcss-add-on-mode t)
:straight (lsp-tailwindcss :type git :straight (:type git :host github :repo "merrickluo/lsp-tailwindcss"))
:host github
:repo "merrickluo/lsp-tailwindcss"))
#+end_src #+end_src
**** Javascript **** Javascript
@@ -1605,8 +1603,8 @@ package =js=.
:config (setopt js-indent-level 2)) :config (setopt js-indent-level 2))
#+end_src #+end_src
**** Typescript **** TypeScript
Typescript is a safer alternative to JavaScript. Lets install its major mode then. TypeScript is a safer alternative to JavaScript. Lets install its major mode then.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package typescript-mode (use-package typescript-mode
:defer t :defer t
@@ -1673,7 +1671,12 @@ simplest fix is to run the following command:
#+begin_src sh #+begin_src sh
npm install --save-dev vue-tsc typescript npm install --save-dev vue-tsc typescript
#+end_src #+end_src
Or replace =npm= with whichever package manager you prefer. Or replace =npm= with whichever package manager you prefer.
If you want to work with Vue in Emacs, =web-mode= is more than enough If you want to work with Vue in Emacs, =web-mode= is more than enough
when paired with an LSP server. when paired with an LSP server.
With the Nix package manager, the Vue 3 LSP server is
=nodePackages."@vue/language-server"= and not =vue-language-server=. The
latter is for Vue 2.