diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-12-12 22:38:12 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-12-12 22:38:12 +0100 |
commit | 9b3cd270e33097f7a4788ede44e05de4a2a7194f (patch) | |
tree | cbacefc926913e5cec619283dabc5604cc50f0d7 | |
parent | 8c6d33c2de7518ec0030ed038a7d57625fde6133 (diff) |
emacs: Install async.el
-rw-r--r-- | .config/emacs/init.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 8a7b2b3..9bb921c 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -294,6 +294,15 @@ the buffer without saving it." (advice-add command :around #'mm-auto-create-directories)) +;;; Emacs Lisp Libraries + +;; The following are included here because they’re required by some of +;; the modules. + +(use-package async + :ensure t) + + ;;; Load Modules (require 'mm-abbrev) ; Text Expansion |