From c79c3c7b29a6b92e6e9b9085f91dc2a5fb2512ad Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 20 Jan 2021 07:35:13 +0100 Subject: [PATCH] Emacs: C++: Don't change enum style. --- init.d/programming/lsp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/programming/lsp.el b/init.d/programming/lsp.el index e5d43b0..ead7767 100644 --- a/init.d/programming/lsp.el +++ b/init.d/programming/lsp.el @@ -32,7 +32,7 @@ (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-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.