From 45fbc64587df585808cd204c33f4e801fad086ef Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 3 Jun 2021 01:12:18 +0200 Subject: [PATCH] LSP: Change semantic highlighting a bit. --- init.d/programming/lsp.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.d/programming/lsp.el b/init.d/programming/lsp.el index 7f0e6f7..031887e 100644 --- a/init.d/programming/lsp.el +++ b/init.d/programming/lsp.el @@ -32,7 +32,10 @@ (lsp-face-semhl-parameter ((t (:inherit font-lock-variable-name-face :italic t :underline t)))) (lsp-face-semhl-member ((t (:inherit default :weight semibold)))) - ;; (lsp-face-semhl-enum ((t (:inherit font-lock-type-face)))) + (lsp-face-semhl-macro ((t (:inherit font-lock-preprocessor-face + :weight normal)))) + (lsp-face-semhl-enum ((t (:inherit font-lock-variable-name-face + :weight semibold)))) :config (progn (setq lsp-clients-clangd-args '("--compile-commands-dir=build")) (when (>= (my/clangd-version) 9.0)