From d6e0230d39242529e75b78e6fd145f56b176be42 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 14 Aug 2013 07:43:00 -0400 Subject: [PATCH] explicitly load projectile and dont use native indexing --- emacs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs b/emacs index 0a8261c..daceb98 100644 --- a/emacs +++ b/emacs @@ -1,6 +1,7 @@ ; load all the other good things (add-to-list 'load-path "~/.emacs.d") (add-to-list 'load-path "~/.emacs.d/powerline-2.2") +(add-to-list 'load-path "~/.emacs.d/elpa/projectile-0.9.2") ;disable backup (setq backup-inhibited t) @@ -41,9 +42,8 @@ (require 'projectile) (setq projectile-completion-system 'grizzl) -(setq projectile-use-native-indexing t) (setq projectile-enable-caching t) -(projectile-global-mode) +(projectile-global-mode t) (elpy-enable)