How to change text highlighting in emacs

I am new to emacs and am using prelude . I want to completely disable the syntax highlighting that occurs after the boundaries of word wrapping and everyone will use regular syntax highlighting. How to do it?

Here is the screenshot I'm talking about:

enter image description here

+4
source share
1 answer

Highlighting content that exceeds word wrap boundaries is provided whitespace-mode(which is actually an inline mode).

The Prelude documentation explains how to disable it:

Turn off space mode

whitespace-mode , . :

(setq prelude-whitespace nil)

+3

All Articles