aboutsummaryrefslogtreecommitdiffstats
path: root/oni-projectile.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-03-06 16:59:02 -0800
committerGravatar Tom Willemse2020-03-06 16:59:02 -0800
commitdf1fe7c7eb73fd444831d9dbacb172e80297f971 (patch)
tree82c113e7cd68bbdaa88e6feb4a74516070429896 /oni-projectile.el
parent4e1ff8893d17bcb7aea4a6963296d998d6da7037 (diff)
downloademacs-config-df1fe7c7eb73fd444831d9dbacb172e80297f971.tar.gz
emacs-config-df1fe7c7eb73fd444831d9dbacb172e80297f971.zip
Fix projectile on Windows
Diffstat (limited to 'oni-projectile.el')
-rw-r--r--oni-projectile.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/oni-projectile.el b/oni-projectile.el
index f7b694b..4f4e6e4 100644
--- a/oni-projectile.el
+++ b/oni-projectile.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2019.0904.210741
+;; Version: 2020.0306.095413
;; Package-Requires: (projectile ivy oni-data-dir)
;; This program is free software; you can redistribute it and/or modify
@@ -50,8 +50,7 @@
(when (eq system-type 'windows-nt)
(setq projectile-enable-caching nil)
- (setq projectile-generic-command "\"C:\\Program Files\\Git\\usr\\bin\\find.exe\" . -type d \"(\" -path \"*/node_modules\" -o -path \"*/upload-test\" -o -path \"*/dlls\" -o -path \"*/apps/*/img\" -o -path \"*/apps/*/video\" -o -path \"*/apps/*/font\" -o -path \"*/apps/*/content\" -o -path \"*/apps/*/favicons\" -o -path \"*/apps/*/pages.*\" -o -path \"*/.intl\" \")\" -prune -o -type f -print0")
- (setq projectile-git-command "\"C:/Program Files/Git/bin/git.exe\" ls-files -zco --exclude-standard")
+ (setq projectile-generic-command "\"C:\\msys64\\usr\\bin\\find.exe\" . -type d \"(\" -path \"*/node_modules\" -o -path \"*/upload-test\" -o -path \"*/dlls\" -o -path \"*/apps/*/img\" -o -path \"*/apps/*/video\" -o -path \"*/apps/*/font\" -o -path \"*/apps/*/content\" -o -path \"*/apps/*/favicons\" -o -path \"*/apps/*/pages.*\" -o -path \"*/.intl\" \")\" -prune -o -type f -print0")
(setq projectile-indexing-method 'alien))
;;;###autoload(with-eval-after-load 'projectile (require 'oni-projectile))