From 51437d154eba80d159cd8485c110f6c778fab75e Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 18 Jan 2016 13:12:03 +0100 Subject: Emacs: Disable notify-based file watching on Darwin --- tag-emacs/emacs.d/init.org | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tag-emacs') diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index cc0ba799..dfbcd2ab 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -533,10 +533,11 @@ trash for deleting on OS X. ** autorevert #+BEGIN_SRC emacs-lisp -(use-package autorevert - :init (progn - (global-auto-revert-mode 1) - (setq auto-revert-verbose nil))) + (use-package autorevert + :init (progn + (global-auto-revert-mode 1) + (setq auto-revert-verbose nil + auto-revert-use-notify (not (eq system-type 'darwin))))) #+END_SRC ** Encoding -- cgit 1.4.1