From 81cf6e6f031b486091e9cbde04de642694231083 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 1 May 2020 17:36:52 +0300 Subject: Change: flyspell-mode face for errors --- emacs.d/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/emacs.d/init.el b/emacs.d/init.el index a1574d5..e5aba48 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -129,8 +129,12 @@ :family "Hack") ;; Turn on flyspell spell checking. +(require 'flyspell) (add-hook 'text-mode-hook 'flyspell-mode) (add-hook 'prog-mode-hook 'flyspell-prog-mode) +(set-face-attribute 'flyspell-incorrect nil + :foreground "#ff0000") + ;; Show matching parens. (add-hook 'text-mode-hook 'show-paren-mode) -- cgit v1.2.1