;;; 101-async.el --- asynchronous code execution ;;; Commentary: ;; Async enables asynchronous processing in Emacs, as well as some basic implementations of asynchronous capabilities ;;; Code: (use-package async :init (autoload 'dired-async-mode "dired-async.el" nil t) (dired-async-mode 1) (async-bytecomp-package-mode 1) (autoload 'dired-async-mode "dired-async.el" nil t) (async-bytecomp-package-mode 1) (dired-async-mode 1) (require 'smtpmail-async) (setq send-mail-function 'async-smtpmail-send-it)) (provide '101-async) ;;; 101-async.el ends here