Update elpaca
All checks were successful
/ Test config on 20 (push) Successful in 28s

This commit is contained in:
Maciej 2024-11-07 17:07:28 +02:00
parent 42ccce60bd
commit d15b0776b0
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
5 changed files with 176 additions and 172 deletions

View file

@ -2,6 +2,7 @@
;;; Commentary:
;;; Global Language Server Protocol Config
;;; Code:
(require 'icejam-blocking)
;; (use-package lsp-mode :ensure (:depth 5) :requires (company))
(with-eval-after-load 'lsp-mode
@ -21,8 +22,11 @@
;; When needed, enable this hot garbage in dir-locals.el
lsp-disabled-clients '(vue-semantic-server
vls
;; Ruby LSP servers, none of which actually work.
ruby-ls rubocop-ls typeprof-ls)
ruby-ls
rubocop-ls
typeprof-ls)
lsp-log-io nil
lsp-enable-file-watchers nil)
(unbind-key "s-l =" lsp-mode-map)
@ -64,11 +68,11 @@
(use-package lsp-ui :ensure t :after (lsp-mode))
(with-eval-after-load 'lsp-ui
(setq lsp-ui-doc-enable t
lsp-ui-header t
lsp-ui-delay 0.5 ;; Wait half a second to display documentation
lsp-ui-doc-position 'at-point
lsp-ui-doc-include-signature t))
(setopt lsp-ui-doc-enable t
lsp-ui-header t
lsp-ui-delay 0.5 ;; Wait half a second to display documentation
lsp-ui-doc-position 'at-point
lsp-ui-doc-include-signature t))
;; Lsp debugger mode
(use-package dap-mode :ensure t :after (lsp-mode lsp-ui))