aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-22 13:28:15 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-22 13:28:15 -0400
commita95b382d7294a0d9d7fc4a38cc9bfe52367cea90 (patch)
treedebf21b36ecb1f345850a6687dbd4228b3d42769 /init.el
parentMerge `create-development-environment` branch to `stable` branch (diff)
downloadmmosmacs-a95b382d7294a0d9d7fc4a38cc9bfe52367cea90.tar.gz
mmosmacs-a95b382d7294a0d9d7fc4a38cc9bfe52367cea90.tar.bz2
mmosmacs-a95b382d7294a0d9d7fc4a38cc9bfe52367cea90.zip
Don't show whitespace in specific places
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/init.el b/init.el
index 72e8892..03c7dcd 100644
--- a/init.el
+++ b/init.el
@@ -358,6 +358,14 @@
358 indicate-empty-lines t 358 indicate-empty-lines t
359 indicate-buffer-boundaries 'left) 359 indicate-buffer-boundaries 'left)
360 360
361;; Don't show whitespace in specific places
362(dolist (hook '(comint-mode-hook
363 compilation-mode-hook
364 minibuffer-setup-hook
365 special-mode-hook
366 term-mode-hook))
367 (add-hook hook (lambda () (setq-local show-trailing-whitespace nil))))
368
361;; Make files end with newline 369;; Make files end with newline
362(setq-default require-final-newline t) 370(setq-default require-final-newline t)
363 371