reenabled whitespace-mode by default and made it a lot less intrusive
This commit is contained in:
parent
61f53e6d06
commit
152546ff48
3 changed files with 12 additions and 8 deletions
|
@ -48,7 +48,7 @@
|
|||
:type 'boolean
|
||||
:group 'prelude)
|
||||
|
||||
(defcustom prelude-whitespace nil
|
||||
(defcustom prelude-whitespace t
|
||||
"Non-nil values enable Prelude's whitespace visualization."
|
||||
:type 'boolean
|
||||
:group 'prelude)
|
||||
|
@ -321,6 +321,10 @@ indent yanked text (with prefix arg don't indent)."
|
|||
(add-hook 'after-save-hook
|
||||
'executable-make-buffer-file-executable-if-script-p)
|
||||
|
||||
;; whitespace-mode config
|
||||
(setq whitespace-line-column 80) ;; limit line length
|
||||
(setq whitespace-style '(face tabs empty trailing lines-tail))
|
||||
|
||||
;; saner regex syntax
|
||||
(require 're-builder)
|
||||
(setq reb-re-syntax 'string)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue