emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit df89d0cfe623facc7b191afa723137a5e2fc5e6b
parent f980fb8dd7ee53d2a24a05bf8db5a25ab157e8cd
Author: Cem Keylan <cem@ckyln.com>
Date:   Fri, 17 Jul 2020 00:43:52 +0300

trailing-whitespace: keep it off for now

I will reenable it once I can figure out how to enable it only for text editing
mode.

Diffstat:
Minit.org | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/init.org b/init.org @@ -726,7 +726,7 @@ to do so. Let's set it so that Emacs will show trailing whitespace on the buffer and automatically deletes them before save. #+BEGIN_SRC emacs-lisp - (setq-default show-trailing-whitespace t) + (setq-default show-trailing-whitespace nil) (add-hook 'before-save-hook 'delete-trailing-whitespace) #+END_SRC