aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs/config.org
diff options
context:
space:
mode:
Diffstat (limited to 'Emacs/.config/emacs/config.org')
-rw-r--r--Emacs/.config/emacs/config.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 3e58bf6..f20b66b 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -1948,7 +1948,7 @@ at once, without using a VCS like git (all in Emacs).
(leader
"tu" #'undo-tree-visualize))
#+end_src
-*** White space
+*** Whitespace
Deleting whitespace, highlighting when going beyond the 80th character
limit, all good stuff. I don't want to highlight whitespace for
general mode categories (Lisp shouldn't really have an 80 character
@@ -1968,7 +1968,7 @@ limit), so set it for specific modes need the help.
(haskell-mode-hook . whitespace-mode)
(python-mode-hook . whitespace-mode)
:init
- (setq whitespace-style '(face lines-tail tabs tab-mark trailing newline)
+ (setq whitespace-style '(face lines-tail spaces tabs tab-mark trailing newline)
whitespace-line-column 80))
#+end_src
*** Set auto-fill-mode for all text-modes