From 2b711bc453d09749662649b69ac1eed18b1ce192 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 2 Jun 2022 00:01:56 +0100 Subject: [PATCH] chore(lsp): override lsp-face-semhl-label It seems to have recently been changed to default to the same face as comments, which I really do not like. Inheriting from font-lock-keyword-face seems fine though. --- modules/lsp/siren-lsp.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/lsp/siren-lsp.el b/modules/lsp/siren-lsp.el index d38ea34..801fda1 100644 --- a/modules/lsp/siren-lsp.el +++ b/modules/lsp/siren-lsp.el @@ -42,6 +42,10 @@ (lsp-signature-auto-activate t) (lsp-signature-render-documentation t) + :custom-face + ;; Override the default semhl label face. + (lsp-face-semhl-label ((t (:inherit font-lock-keyword-face)))) + ;; Set read process output to 1MB, instead of default 4KB. As many language ;; servers produce output ranging from 800KB to 3MB, leaving it at 4KB affects ;; performance. More info here: