1

Set customizations for whitespace-mode

This commit is contained in:
Jessie Hildebrandt 2022-12-22 05:40:01 -05:00
parent 3bb40ab6a6
commit 3add1b5f4d

13
init.el
View File

@ -669,6 +669,19 @@ DOCSTRING is an optional form that is discarded upon expansion."
(uniquify-after-kill-buffer-p t "Update buffer names after killing")
(uniquify-ignore-buffers-re "^\\*" "Avoid renaming special buffers"))
;; ---------------------------------- ;;
;; whitespace
;; ---------------------------------- ;;
(editor-feature whitespace
"Visualizes blank characters"
:custom
(whitespace-line-column nil "Use the value of `fill-column' instead of a set value")
(whitespace-display-mappings '((tab-mark 9 [8677 9]) ; Tab
(space-mark 32 [8729]) ; Space
(space-mark 160 [8999]) ; Non-breaking space
(newline-mark 10 [8617 10])))) ; Newline
;; -------------------------------------------------------------------------- ;;
;;
;; External packages