summaryrefslogtreecommitdiff
path: root/lisp/text.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-04-11 09:01:33 -0400
committermattkae <mattkae@protonmail.com>2023-04-11 09:01:33 -0400
commit2457625b5afe393dceca3db6214174418702dc66 (patch)
tree365cf85b470b1a8fbfb889a4b0ee1cec75eed236 /lisp/text.el
parentc2c1cd810d7bae8c6aa1da76b9cef73301ff631d (diff)
Beginning of a grand adventure into improving startup time
Diffstat (limited to 'lisp/text.el')
-rw-r--r--lisp/text.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/text.el b/lisp/text.el
index 2438b7d..6a9858c 100644
--- a/lisp/text.el
+++ b/lisp/text.el
@@ -26,13 +26,12 @@
ispell-dictionary "en_US")
)
+
(use-package flyspell
:ensure t
:hook (text-mode . flyspell-mode)
:config
- (set-face-attribute 'hl-line nil
- :box nil)
- (set-face-attribute 'flyspell-incorrect-face nil :foreground nil :weight 'normal :underline '(:color "red" :style wave))
+ (set-face-attribute 'flyspell-incorrect nil :foreground nil :weight 'normal :underline '(:color "red" :style wave))
)
(provide 'text)