diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2025-10-18 12:05:26 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2025-10-20 20:19:57 +0200 |
| commit | a797c4ad2da63a3f3eebca309a17ec986cc17357 (patch) | |
| tree | cfd2ae9cad57d81360e48b47a47ba402afb7691a | |
| parent | b82d1fc91d5c41b535c390821c65f70ef232cdb8 (diff) | |
| download | dotfiles-a797c4ad2da63a3f3eebca309a17ec986cc17357.tar.xz | |
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.
| -rw-r--r-- | .config/emacs/eighters-theme.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/emacs/eighters-theme.el b/.config/emacs/eighters-theme.el index 5306001..c8efc54 100644 --- 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)))) |
