aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs/config.org
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2022-09-13 21:01:31 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2022-09-14 00:45:42 +0100
commit63dbce1357bba3b7c288012db9908ab7194439fc (patch)
treef2c815627e2495ddfecdef7d1fd9d8978074e536 /Emacs/.config/emacs/config.org
parent88cf84358690fe0f237d10e5fbd8abb953454b91 (diff)
downloaddotfiles-63dbce1357bba3b7c288012db9908ab7194439fc.tar.gz
dotfiles-63dbce1357bba3b7c288012db9908ab7194439fc.tar.bz2
dotfiles-63dbce1357bba3b7c288012db9908ab7194439fc.zip
(Emacs)~whitespace now shows spaces
Might be kinda useless but I think it actually makes it a bit easier to distinguish what's written in a file.
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