diff options
| author | Kรฉvin Le Gouguec <kevin.legouguec@gmail.com> | 2023-01-11 23:44:16 +0100 |
|---|---|---|
| committer | Kรฉvin Le Gouguec <kevin.legouguec@gmail.com> | 2023-01-11 23:44:16 +0100 |
| commit | 3a752faf4681ca9cb83920cee0cecd388ea8e61b (patch) | |
| tree | 72ee4c8fea0532b2c6be92c27359626817b1cca1 | |
| parent | 14f6b62603fc1792619627b133dafb2d3b32be60 (diff) | |
| download | dotfiles-3a752faf4681ca9cb83920cee0cecd388ea8e61b.tar.xz | |
Theme linter packages
(Fix a linter nitpick in passing ๐)
| -rw-r--r-- | .emacs.d/eighters-theme.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.emacs.d/eighters-theme.el b/.emacs.d/eighters-theme.el index e6e3279..b7fd969 100644 --- 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)))) |
