summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--emacs/init.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 925ff8e..a852634 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -1053,9 +1053,10 @@ Also returns nil if pid is nil."
 
 ;;;; Programming
 
-(use-package auto-async-byte-compile
+(use-package auto-compile
   :ensure t
-  :init (add-hook 'emacs-lisp-mode-hook #'auto-async-byte-compile-mode))
+  :commands (auto-compile-on-save-mode)
+  :init (add-hook 'emacs-lisp-mode-hook #'auto-compile-on-save-mode))
 
 (use-package cc-mode
   :defer t