aboutsummaryrefslogtreecommitdiffstats
path: root/oni-projectile.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-03-01 23:59:22 -0800
committerGravatar Tom Willemse2022-03-01 23:59:22 -0800
commita0f9cbf6951af8362d158285e53e71aeaadde69c (patch)
tree5b1ae068321d9741a03fcb21aa7fc5f09d1eeca3 /oni-projectile.el
parenta8f4ffec6aee8d1fe7edb8aba70e6b828d888d6f (diff)
downloademacs-config-a0f9cbf6951af8362d158285e53e71aeaadde69c.tar.gz
emacs-config-a0f9cbf6951af8362d158285e53e71aeaadde69c.zip
[oni-projectile] Remove dependency on ivy
Diffstat (limited to 'oni-projectile.el')
-rw-r--r--oni-projectile.el11
1 files changed, 3 insertions, 8 deletions
diff --git a/oni-projectile.el b/oni-projectile.el
index ec10217..1481aab 100644
--- a/oni-projectile.el
+++ b/oni-projectile.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2021.1123.003113
-;; Package-Requires: (projectile ivy oni-data-dir)
+;; Version: 2022.0301.235907
+;; Package-Requires: (projectile oni-data-dir)
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -26,7 +26,6 @@
;;; Code:
-(require 'ivy)
(require 'oni-data-dir)
(require 'projectile)
@@ -37,17 +36,13 @@
(setq projectile-cache-file (oni-data-dir-locate "projectile.cache"))
-(setq projectile-completion-system 'ivy)
+(setq projectile-completion-system 'auto)
(add-to-list 'projectile-project-root-files "yarn.lock")
(add-to-list 'projectile-project-root-files "fabfile.py")
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
-(ivy-add-actions
- 'projectile-switch-project
- '(("g" magit-status "git status")))
-
(when (eq system-type 'windows-nt)
(setq projectile-enable-caching nil)
(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")