dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit a797c4ad2da63a3f3eebca309a17ec986cc17357
parent b82d1fc91d5c41b535c390821c65f70ef232cdb8
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Sat, 18 Oct 2025 12:05:26 +0200

Customize new Elisp semantic faces

Not sure if I want to actually use elisp-fontify-semantically, but I'd
at least like for it to "make sense" to me visually.

Diffstat:
M.config/emacs/eighters-theme.el | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/.config/emacs/eighters-theme.el b/.config/emacs/eighters-theme.el @@ -272,6 +272,10 @@ `(dired-special ((t (:foreground ,fg-yellow-dim)))) `(eglot-highlight-symbol-face ((t (:background ,bg-cyan-dim :underline ,fg-cyan-dim)))) `(eldoc-highlight-function-argument ((t (:background ,bg-red-dim :foreground ,fg-magenta :inverse-video t :weight bold)))) + `(elisp-bound-variable ((t (:slant italic :inherit font-lock-variable-use-face)))) + `(elisp-free-variable ((t (:foreground ,fg-yellow-subtle)))) + `(elisp-shadowed-variable ((t (:inherit elisp-shadowing-variable)))) + `(elisp-shadowing-variable ((t (:inherit (elisp-free-variable elisp-binding-variable))))) `(emacs-authors-author ((t (:inherit (bold eighters-identity variable-pitch))))) `(emacs-authors-descriptor ((t (:inherit (shadow variable-pitch))))) `(emacs-news-does-not-need-documentation ((t (:foreground ,fg-dimmer)))) @@ -301,6 +305,7 @@ `(font-lock-comment-face ((t (:foreground ,fg-dim :slant italic)))) `(font-lock-constant-face ((t (:foreground ,fg-magenta)))) `(font-lock-doc-face ((t (:foreground ,fg-green-dim :slant italic)))) + `(font-lock-function-call-face ((t (:foreground ,fg-blue-subtle)))) `(font-lock-function-name-face ((t (:foreground ,fg-blue :weight bold)))) `(font-lock-keyword-face ((t (:foreground ,fg-cyan :weight bold)))) `(font-lock-negation-char-face ((t (:inherit warning))))