From df5d0349070cfebfc3f151f8112cd875e5c3ce97 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Thu, 12 Sep 2024 12:38:50 +0200 Subject: [PATCH] PROJECTILE: install project.el hooks Some packages use the project.el functions/bindings (like consult, ...) for their functionality. Install the projectile bindings so that they start using the projectile framework. --- config_new.org | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config_new.org b/config_new.org index 4e3591d..f53f9a0 100644 --- a/config_new.org +++ b/config_new.org @@ -369,7 +369,10 @@ https://github.com/remyferre/comment-dwim-2 (setq projectile-enable-caching t) (define-key projectile-mode-map (kbd "C-x p") 'projectile-command-map) (projectile-mode +1) + (require 'project) + (add-hook 'project-find-functions #'project-projectile) ) +#+END_SRC * Custom