From 05ad81c63116200bd1a9dea506bde96a4d3093fb Mon Sep 17 00:00:00 2001 From: finga Date: Fri, 7 Feb 2025 07:32:52 +0100 Subject: [PATCH] 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. --- .emacs.d/config/dev.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/config/dev.el b/.emacs.d/config/dev.el index 1a22ee9..d6808c7 100644 --- a/.emacs.d/config/dev.el +++ b/.emacs.d/config/dev.el @@ -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)