diff options
author | fpi | 2022-05-14 23:55:12 +0200 |
---|---|---|
committer | fpi | 2022-05-15 15:14:19 +0200 |
commit | d89fc58e6e29ab843b0380e7613c7951df6104cd (patch) | |
tree | 65be619bffb296b5b96a834c1fd38ad018fed9c3 | |
parent | Switch to vertico, consult, embark, marginalia (diff) |
Remove projectile
-rw-r--r-- | emacs-init.org | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/emacs-init.org b/emacs-init.org index 82f5a2b..8ee24f8 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -2663,7 +2663,6 @@ some safe local variable values. (gac-debounce-interval . 600) #+end_src ** Projects -*** project.el #+begin_src emacs-lisp (use-package project :init @@ -2679,22 +2678,6 @@ some safe local variable values. (?v "VC-Dir" project-vc-dir) (?e "Eshell" project-eshell)))) #+end_src -*** Projectile -Projectile should be fully replaceable with =project.el=. Though some packages may still use projectile as dependency.. -#+BEGIN_SRC emacs-lisp :tangle no -(use-package projectile - :straight t - :delight '(:eval (concat " " (projectile-project-name))) - :init - (setq projectile-project-search-path '("~/git/projects/")) - (setq projectile-indexing-method 'alien) - (setq projectile-enable-caching t) - (setq projectile-completion-system 'ido) - (setq projectile-file-exists-local-cache-expire (* 5 60)) - :config - ;; (projectile-mode 1) - :bind (("C-c p" . projectile-command-map))) -#+END_SRC ** Consult A bundle of common functions. Mostly drop in replacements for ~find-file~, ~grep~, ~find~, etc. #+begin_src emacs-lisp |