summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authortslil clingman <>2022-05-04 21:30:10 -0500
committertslil clingman <>2022-05-04 21:30:10 -0500
commitcad72c7e625141349073b43a06f1a1e1f00db1fe (patch)
tree5c9ae11c0c59171b6da887326db2bf4b53755912 /emacs
parentb5bc9025c1759b101e2ac7ec3a6756cc9d9bcfbb (diff)
Fix projectile
Diffstat (limited to 'emacs')
-rw-r--r--emacs/inits/15-project-mgmt.el19
1 files changed, 11 insertions, 8 deletions
diff --git a/emacs/inits/15-project-mgmt.el b/emacs/inits/15-project-mgmt.el
index 5ee91e5..5afb74f 100644
--- a/emacs/inits/15-project-mgmt.el
+++ b/emacs/inits/15-project-mgmt.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2020-07-29 20:29:40 (user@hobbies)>
+;; Time-stamp: <2022-05-04 21h30 CDT (hobbies)>
(use-package projectile
:ensure t
@@ -10,13 +10,16 @@
(defadvice projectile-project-root (around ignore-remote first activate)
(unless (file-remote-p default-directory) ad-do-it))
- (setq projectile-completion-system 'default
- projectile-mode-line-prefix ""
- ;; projectile-mode-line-function '(lambda ()
- ;; (format " ¶[%s]"
- ;; (projectile-project-name)))
- project-mode-line-function '(lambda () " ¶")
- ))
+ (setq projectile-indexing-method 'alien
+ projectile-sort-order 'recently-active
+ projectile-enable-caching t
+ projectile-require-root t
+ projectile-completion-system 'default
+ projectile-mode-line-prefix ""
+ projectile-mode-line-function '(lambda ()
+ (format " ¶[%s]" (projectile-project-name)))
+ ;; projectile-mode-line-function '(lambda () " ¶")
+ ))
(use-package magit
:ensure t