Added auto-revert-mode

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.
This commit is contained in:
Jesús 2018-08-04 14:37:24 -05:00
parent 34de2970c2
commit b48545bb7b
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -9,6 +9,12 @@
;;(when (eval-when-compile (version< "24.4" emacs-version)) ;;(when (eval-when-compile (version< "24.4" emacs-version))
;; (electric-indent-mode 1)) ;; (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 ;; Show matching parens
;;---------------------------------------------------------------------------- ;;----------------------------------------------------------------------------