aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-editing-utils.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-editing-utils.el')
-rw-r--r--lisp/init-editing-utils.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/init-editing-utils.el b/lisp/init-editing-utils.el
index 91bd2bf..5f65ef7 100644
--- a/lisp/init-editing-utils.el
+++ b/lisp/init-editing-utils.el
@@ -9,6 +9,12 @@
;;(when (eval-when-compile (version< "24.4" emacs-version))
;; (electric-indent-mode 1))
+;; Active auto-revert-mode that automatically reloads modified files out of Emacs.
+;; It is very useful to see logs (like auto-revert-tail-mode) among many other cases.
+(global-auto-revert-mode)
+(setq global-auto-revert-non-file-buffers t
+ auto-revert-verbose nil)
+
;;----------------------------------------------------------------------------
;; Show matching parens
;;----------------------------------------------------------------------------