aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-18 00:23:17 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-18 00:23:17 -0400
commitb70f8426a4ffebaa4e909f3ef317db8bd216175a (patch)
tree3d39fabb05f3703d659aa623411eb29d2264edb1 /init.el
parentFix formatting for GCMH subsection (diff)
downloadmmosmacs-b70f8426a4ffebaa4e909f3ef317db8bd216175a.tar.gz
mmosmacs-b70f8426a4ffebaa4e909f3ef317db8bd216175a.tar.bz2
mmosmacs-b70f8426a4ffebaa4e909f3ef317db8bd216175a.zip
Add `async` package and enable `async-bytecomp-package-mode`
Diffstat (limited to 'init.el')
-rw-r--r--init.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/init.el b/init.el
index 74e9d8a..de36aba 100644
--- a/init.el
+++ b/init.el
@@ -75,6 +75,19 @@
75 :hook (after-init-hook . gcmh-mode)) 75 :hook (after-init-hook . gcmh-mode))
76 76
77 77
78;; ---------------------------------
79;; Async
80;; -----
81;; Asynchronous processing of things
82;; ---------------------------------
83
84;; Async package
85(use-package async
86 :straight t
87 :config
88 (setq async-bytecomp-package-mode t))
89
90
78 91
79 92
80;; --------------------------------------------------------------------- 93;; ---------------------------------------------------------------------