Change tab char in whitespace mode

This commit is contained in:
Henrik Lissner 2015-08-06 12:46:29 +02:00
parent d7cb533e76
commit d8afee5d12

View file

@ -7,25 +7,20 @@
indent-tabs-mode nil indent-tabs-mode nil
tab-always-indent t tab-always-indent t
tab-width 4 tab-width 4
require-final-newline t require-final-newline t
delete-trailing-lines nil delete-trailing-lines nil
fill-column 80 fill-column 80
;; Sane scroll settings ;; Sane scroll settings
scroll-margin 0 scroll-margin 0
scroll-conservatively 9999 scroll-conservatively 9999
scroll-preserve-screen-position t scroll-preserve-screen-position t
shift-select-mode nil shift-select-mode nil
tabify-regexp "^\t* [ \t]+" tabify-regexp "^\t* [ \t]+"
whitespace-style '(face trailing tabs tab-mark newline newline-mark) whitespace-style '(face tabs tab-mark newline newline-mark)
whitespace-display-mappings whitespace-display-mappings
'((tab-mark ?\t [?\u2502 ?\t] [?\\ ?\t]) '((tab-mark ?\t [?> ?\t])
(newline-mark 10 [36 10])) (newline-mark 10 [36 10]))
truncate-lines t ; do not soft-wrap lines truncate-lines t ; do not soft-wrap lines
truncate-partial-width-windows nil) truncate-partial-width-windows nil)