feat(lsp); tweak lsp-ui-sideline to only show errors

The sideline hover stuff about all objects on the current line are
rather noisy, and most of the time I only care about the errors.
This commit is contained in:
2021-06-24 22:14:39 +01:00
parent f77a3150b7
commit c9a05afbdf

View File

@@ -35,7 +35,9 @@
(lsp-keymap-prefix "M-;")
(lsp-lens-enable t)
(lsp-modeline-diagnostics-enable t)
(lsp-semantic-tokens-apply-modifiers t)
(lsp-semantic-tokens-enable t)
(lsp-semantic-tokens-warn-on-missing-face nil)
(lsp-signature-auto-activate t)
(lsp-signature-render-documentation t)
@@ -88,7 +90,7 @@
(lsp-ui-sideline-enable t)
(lsp-ui-sideline-show-code-actions t)
(lsp-ui-sideline-show-diagnostics t)
(lsp-ui-sideline-show-hover t))
(lsp-ui-sideline-show-hover nil))
(provide 'siren-lsp)
;;; siren-lsp.el ends here