Ensure lsp-mode features are disabled (headerline and inlays)

This commit is contained in:
Alexander Rosenberg 2023-11-03 23:33:08 -07:00
parent 3becf805be
commit 2832882544
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -522,11 +522,11 @@ visual states."
latex-mode markdown-mode blueprint-ts-mode) . lsp-mode)
(lsp-mode . my/-setup-lsp-mode-buffer))
:init
(setq lsp-completion-provider :none)
(setq lsp-completion-provider :none
lsp-headerline-breadcrumb-enable nil
lsp-inlay-hint-enable nil)
(defun my/-setup-lsp-mode-buffer ()
"Called by `lsp-mode-hook' to setup lsp-mode buffers."
(lsp-headerline-breadcrumb-mode -1)
(lsp-inlay-hints-mode -1)
(evil-define-key '(normal visual motion) 'local
"gR" #'lsp-rename
"gA" #'lsp-execute-code-action