all repos — nixfiles @ 800b978c1a70fe11f6bc691b2b8f593f651024be

System and user configuration, managed by nix and home-manager

emacs: auto-compile asynchronously

Alan Pearce
commit

800b978c1a70fe11f6bc691b2b8f593f651024be

parent

06a4cfad4e41aab209fb32934c7603ddc6759451

1 file changed, 3 insertions(+), 3 deletions(-)

jump to
M emacs/.emacs.d/main.elemacs/.emacs.d/main.el
@@ -1908,10 +1908,10 @@ (add-hook 'cider-mode-hook #'eldoc-mode)))
;;;;; Auto-compile -;; Auto-compile emacs lisp when saving. -(use-package auto-compile +;; Auto-compile emacs lisp when saving, asynchronously. +(use-package auto-async-byte-compile :defer t - :init (add-hook 'emacs-lisp-mode-hook #'auto-compile-on-save-mode)) + :init (add-hook 'emacs-lisp-mode-hook #'enable-auto-async-byte-compile-mode)) ;;;;; cc-mode