Reputation: 1507
I am new to emacs and using prelude. I want to completely disable the syntax highlighting that happens after the word wrap bounds and have everything use the normal syntax highlighting. How do I do this?
Here is a screen shot of what I am talking about:
Upvotes: 4
Views: 584
Reputation: 5290
Highlighting of content that exceeds word wrap bounds is provided by whitespace-mode
(which is actually a built-in mode).
The Prelude documentation explains how to disable it:
Disabling whitespace-mode
Although
whitespace-mode
is awesome some people might find it too intrusive. You can disable it in your personal config with the following bit of code:
(setq prelude-whitespace nil)
Upvotes: 3