From ce55bc4eb694ceefdc5f6072eaefdb4d361eac7d Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Thu, 13 Oct 2016 11:03:31 +0200 Subject: [PATCH] Fix whitespace-mode settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now it is actually activated… --- init.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 7bc0fe1..2890e6f 100644 --- a/init.el +++ b/init.el @@ -212,10 +212,13 @@ ;; ;; It is turned on by default, and can be toggled with F10 (use-package whitespace + :ensure t + :demand :config - (global-whitespace-mode t) + (global-whitespace-mode 1) :bind - (([f10] . global-whitespace-mode))) + (([f10] . whitespace-mode) + ([(shift f10)] . global-whitespace-mode))) ;; Multiple cursors (use-package multiple-cursors