Skip to content

Commit

Permalink
fix(compile-multi): must be installed before projection
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Feb 22, 2024
1 parent baaa638 commit 001428d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
7 changes: 0 additions & 7 deletions modules/me-prog.el
Original file line number Diff line number Diff line change
Expand Up @@ -225,13 +225,6 @@ Fall back to the default `citre--project-root'."
:hook (prog-mode . eldoc-box-hover-at-point-mode)
:hook (eglot-managed-mode . eldoc-box-hover-at-point-mode))

(use-package compile-multi
:straight (:files (:defaults "extensions/compile-multi-embark/*.el" "extensions/consult-compile-multi/*.el"))
:config
;; Enable integration for `consult' and `embark'
(consult-compile-multi-mode 1)
(compile-multi-embark-mode 1))

(use-package apheleia
:straight t
:custom
Expand Down
15 changes: 15 additions & 0 deletions modules/me-project.el
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,21 @@
"p" #'consult-project-extra-find
"P" #'consult-project-extra-find-other-window))

(use-package compile-multi
:straight t)

(use-package compile-multi-embark
:straight t
:after embark
:config
(compile-multi-embark-mode 1))

(use-package consult-compile-multi
:straight t
:after consult
:config
(consult-compile-multi-mode 1))

(use-package projection
:straight t
;; Enable the `projection-hook' feature.
Expand Down

0 comments on commit 001428d

Please sign in to comment.