aboutsummaryrefslogtreecommitdiffstats
path: root/oni-projectile.el
diff options
context:
space:
mode:
Diffstat (limited to 'oni-projectile.el')
-rw-r--r--oni-projectile.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/oni-projectile.el b/oni-projectile.el
index 9c5d491..602e59e 100644
--- a/oni-projectile.el
+++ b/oni-projectile.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 20190219003930
-;; Package-Requires: (projectile ivy)
+;; Version: 20190227233727
+;; Package-Requires: (projectile ivy 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,15 +26,15 @@
;;; Code:
+(require 'oni-data-dir)
(require 'projectile)
(setq projectile-known-projects-file
- (concat user-emacs-directory "data/projectile-bookmarks.eld"))
+ (oni-data-dir-locate "projectile-bookmarks.eld"))
(setq projectile-mode-line-prefix " P")
-(setq projectile-cache-file
- (concat user-emacs-directory "data/projectile.cache"))
+(setq projectile-cache-file (oni-data-dir-locate "projectile.cache"))
(setq projectile-completion-system 'ivy)