dotfiles

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

commit 3a752faf4681ca9cb83920cee0cecd388ea8e61b
parent 14f6b62603fc1792619627b133dafb2d3b32be60
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Wed, 11 Jan 2023 23:44:16 +0100

Theme linter packages

(Fix a linter nitpick in passing πŸ™Š)

Diffstat:
M.emacs.d/eighters-theme.el | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/.emacs.d/eighters-theme.el b/.emacs.d/eighters-theme.el @@ -118,7 +118,7 @@ (defface eighters-date nil "Face for text that describes dates.") (defface eighters-identity nil - "Face for names of persons") + "Face for names of persons.") (defface eighters-markup nil "Face for text that describes \"structure\" rather than content.") (defface eighters-title-1 nil @@ -196,6 +196,11 @@ `(eldoc-highlight-function-argument ((t (:background ,bg-yellow :foreground ,fg-yellow :weight bold)))) `(error ((t :foreground ,fg-red :weight bold))) `(escape-glyph ((t (:foreground ,fg-red-dim :inherit fixed-pitch-serif)))) + `(flymake-error ((t (:underline (:color ,fg-red :style wave))))) + `(flymake-note ((t (:underline (:color ,fg-blue :style wave))))) + `(flymake-warning ((t (:underline (:color ,fg-yellow :style wave))))) + `(flyspell-duplicate ((t (:underline (:color ,fg-yellow :style wave))))) + `(flyspell-incorrect ((t (:underline (:color ,fg-red :style wave))))) `(font-lock-builtin-face ((t (:foreground ,fg-blue)))) `(font-lock-comment-face ((t (:foreground ,fg-dim :slant italic)))) `(font-lock-constant-face ((t (:foreground ,fg-magenta))))