dev: Hide lsp-mode sideline diagnostics

Per default errors are inlined right aligned next to the point in code
where errors are happening. This change should prevent that error
texts are being shown.
This commit is contained in:
finga 2025-02-07 07:32:52 +01:00
parent c7945b9791
commit 05ad81c631

View file

@ -50,7 +50,8 @@
("C-c i" . lsp-ui-doc-show)
:config
(setq lsp-ui-doc-position 'at-point)
(setq lsp-ui-doc-show-with-mouse nil))
(setq lsp-ui-doc-show-with-mouse nil)
(setq lsp-ui-sideline-show-diagnostics nil))
(use-package yasnippet
:ensure t)