From ea374eb0605c774f88e9ddb207d8dd28bfaca593 Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 17 Dec 2024 18:11:35 -0500 Subject: [PATCH] turn off the mega annoying lsp documentation popup window --- emacs.d/lsp.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emacs.d/lsp.el b/emacs.d/lsp.el index c7c6424..8577a56 100644 --- a/emacs.d/lsp.el +++ b/emacs.d/lsp.el @@ -30,6 +30,9 @@ (setq lsp-headerline-breadcrumb-enable nil) (setq lsp-enable-snippet nil) (setq lsp-warn-no-matched-clients nil) + ;; having this giant window pop-up while typing is mega annoying! wish this could be done + ;; as a tooltip instead ... + (setq lsp-signature-render-documentation nil) ;; seems to remove the semi-annoying "Unable to autoconfigure company-mode" warning ;; but still leaves completion via corfu working? (setq lsp-completion-provider :none)