commit 9fcc04819a5c455b5577a7bf4312f3b1f1252e78
parent 713cf8a1ebea16ece6910b7b3c79b61d4343d1a9
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date: Sat, 28 Jul 2018 18:16:01 -0400
Auto detect file changes.
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/README.org b/README.org
@@ -59,6 +59,12 @@ Highlight portions of line over 80 characters in =prog-mode=.
(add-hook 'prog-mode-hook 'whitespace-mode)
#+END_SRC
+** Auto Detect File Changes
+Enable auto revert mode to auto-refresh when files have changed on disk.
+#+BEGIN_SRC emacs-lisp
+ (global-auto-revert-mode t)
+#+END_SRC
+
** Color Themes
Install =base16-theme= and enable gruvbox dark pale.
#+BEGIN_SRC emacs-lisp