From 00d40a2d5ac4f40adcf904b5903263e8dc7f9900 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Sun, 8 Sep 2024 18:22:53 +0200 Subject: [PATCH] PROJECTILE: Initial configuration Not sure yet about this but working for now. Override default project keymap --- config_new.org | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/config_new.org b/config_new.org index 2876e5c..6d4403d 100644 --- a/config_new.org +++ b/config_new.org @@ -332,12 +332,11 @@ https://github.com/remyferre/comment-dwim-2 #+BEGIN_SRC emacs-lisp (use-package projectile :ensure t - :hook (prog-mode . projectile-mode) -;; :config -;; (setq projectile-globally-ignored-directories (cons ".ccls-cache" projectile-globally-ignored-directories)) -;; (setq projectile-indexing-method 'alien) -;; (setq projectile-enable-caching t) -;; (projectile-mode) + :config + (setq projectile-indexing-method 'alien) + (setq projectile-enable-caching t) + (define-key projectile-mode-map (kbd "C-x p") 'projectile-command-map) + (projectile-mode +1) ) #+END_SRC