From af9f766cd070a7e4c08740b4313969e2d010eb1f Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Thu, 25 Jan 2024 20:26:15 -0500 Subject: [PATCH] fix(emacs): underline `eglot-highlight-symbol-face` Signed-off-by: Lucas Sta Maria --- .emacs.d/include/misc.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.emacs.d/include/misc.el b/.emacs.d/include/misc.el index 9263896..1ed7402 100644 --- a/.emacs.d/include/misc.el +++ b/.emacs.d/include/misc.el @@ -82,6 +82,11 @@ (define-key eglot-java-mode-map (kbd "C-c l a") #'eglot-code-actions) (setq c-basic-offset 2)) +(set-face-attribute 'eglot-highlight-symbol-face nil + :family "JetBrains Mono" + :weight 'semi-bold + :underline t) + ;; Git Gutter (global-git-gutter-mode +1)