From 917b2fa74b992d1e0d0246759833e78f959c50b6 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 1 Dec 2020 19:47:50 +0100 Subject: [PATCH] Emacs: LSP: Change faces for semantic highlighting. --- init.d/programming/lsp.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/init.d/programming/lsp.el b/init.d/programming/lsp.el index 578668a..272fa48 100644 --- a/init.d/programming/lsp.el +++ b/init.d/programming/lsp.el @@ -1,6 +1,6 @@ ;;; lsp.el --- Language Server Protocol. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-12-01T18:20:29+0100> +;; Time-stamp: <2020-12-01T19:40:27+0100> ;;; Commentary: @@ -30,7 +30,8 @@ :italic t)))) (lsp-face-semhl-parameter ((t (:inherit font-lock-variable-name-face :italic t :underline t)))) - (lsp-face-semhl-member ((t (:inherit default)))) + (lsp-face-semhl-member ((t (:inherit default :weight semibold)))) + (lsp-face-semhl-enum ((t (:inherit font-lock-type-face)))) :config (progn (setq lsp-clients-clangd-args '("--compile-commands-dir=build")) ;; Add “-clang-tidy” to clangd args if the version supports it.