Skip to content

Commit

Permalink
chg: Cambia el comportamiento de lsp-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
shackra committed Dec 16, 2023
1 parent 0d179c5 commit 8df9b30
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- [[#correo-electrónico][correo electrónico]]
- [[#tramp][tramp]]
- [[#ajustes-para-lsp-mode][Ajustes para lsp-mode]]
- [[#ajusta-lsp-ui][Ajusta lsp-ui]]
- [[#configuración-de-lsp-tailwind][configuración de lsp-tailwind]]
- [[#svelte-mode][svelte-mode]]
- [[#typescript-mode][typescript-mode]]
Expand Down Expand Up @@ -319,6 +320,19 @@ Ajustes para Tramp (sacados de [[https://tecosaur.github.io/emacs-config/config.
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\.next\\'")
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]__snapshots?__\\'"))
#+end_src

** Ajusta lsp-ui
#+begin_src emacs-lisp
(after! lsp-mode
(setq lsp-headerline-breadcrumb-enable t)
(setq lsp-ui-doc-enable t)
(setq lsp-ui-doc-position 'at-point)
(setq lsp-ui-doc-show-with-cursor t)
(setq lsp-ui-doc-show-with-mouse t)
(setq lsp-signature-render-documentation nil)
(setq lsp-eldoc-enable-hover nil)
(setq lsp-signature-auto-activate nil))
#+end_src
** configuración de lsp-tailwind
#+begin_src emacs-lisp
(after! lsp-tailwindcss
Expand Down

0 comments on commit 8df9b30

Please sign in to comment.