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
tab-always-indent t
tab-width 4
require-final-newline t
delete-trailing-lines nil
fill-column 80
;; Sane scroll settings
scroll-margin 0
scroll-conservatively 9999
scroll-preserve-screen-position t
shift-select-mode nil
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
'((tab-mark ?\t [?\u2502 ?\t] [?\\ ?\t])
'((tab-mark ?\t [?> ?\t])
(newline-mark 10 [36 10]))
truncate-lines t ; do not soft-wrap lines
truncate-partial-width-windows nil)