Simplify function call

This commit is contained in:
Maciej 2019-07-16 22:25:17 +03:00
parent 44b4cf6170
commit 618c854d21
Signed by: maciej
GPG key ID: 41D62D42D3B0D765

View file

@ -19,12 +19,11 @@
:defer t
:hook (((prog-mode text-mode) . whitespace-mode)
(before-save . whitespace-cleanup))
:init (setq whitespace-style #'(face trailing empty))
;;; Insert newline on save
(setq require-final-newline t)
;;; Tabs are spaces and are general at 2. Guide indent
;;; with lines
(setq-default indent-tabs-mode nil))
:config
(setq whitespace-style #'(face trailing empty newline)
;;; Insert newline on save
require-final-newline t
indent-tabs-mode nil))
;; Use colorful, matching parens
(use-package rainbow-delimiters