diff options
-rw-r--r-- | emacs/init.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el index 925ff8ee..a8526340 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 |