about summary refs log tree commit diff stats
path: root/.emacs.d/lisp
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r--.emacs.d/lisp/init-packages.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-packages.el b/.emacs.d/lisp/init-packages.el
index 700d666..cbfdb25 100644
--- a/.emacs.d/lisp/init-packages.el
+++ b/.emacs.d/lisp/init-packages.el
@@ -39,14 +39,14 @@
 (use-feature straight-x
   :commands (straight-x-fetch-all))
 
-;; useful for corfu and vertico extenions
+;; useful for corfu and vertico extensions
 (defmacro use-extension (pkg name &rest args)
   "Like `use-package', but for a package extension.
 `PKG' is the name of the package, `NAME' and `ARGS' are as with `use-package'"
   (declare (indent defun))
   `(use-package ,name
      :straight nil
-     :after pkg
+     :after ,pkg
      :demand t
      ,@args))