From 79df4fb9432f2b4804fb07b6bea40e01f7e997c8 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 21 Oct 2016 08:18:18 +0200 Subject: [PATCH] Enable autorevert globally MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I may regret this later… --- init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.el b/init.el index 66cc347..95fbfb7 100644 --- a/init.el +++ b/init.el @@ -592,6 +592,10 @@ :config (show-paren-mode t)) +(use-package autorevert + :config + (global-auto-revert-mode 1)) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el")