From 8d35b27f276c23f11ccd5a334a88ea17cf87ab3b Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 8 Feb 2021 02:04:57 +0100 Subject: [PATCH] Emacs: Load prescient and counsel-projectile after counsel. --- init.d/misc/libs.el | 1 + init.d/programming/common.el | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/init.d/misc/libs.el b/init.d/misc/libs.el index bd48807..b50add4 100644 --- a/init.d/misc/libs.el +++ b/init.d/misc/libs.el @@ -12,6 +12,7 @@ ;; Sorting and filtering, library. (use-package prescient :demand t + :after (counsel) :hook (after-init . prescient-persist-mode)) (provide 'misc/libs) diff --git a/init.d/programming/common.el b/init.d/programming/common.el index 406d4a5..be522a3 100644 --- a/init.d/programming/common.el +++ b/init.d/programming/common.el @@ -136,7 +136,7 @@ Ignores ARGS." (use-package counsel-projectile :demand t - :after (projectile) + :after (counsel projectile) :config (progn ;; I'm not exactly sure what I did here but it seems to work. (defun my/counsel-projectile-switch-project-action (project)