Commit f12023efa4c2

Vincent Demeester <vincent@sbr.pm>
2015-08-11 14:04:05
Projectile customization / fix
1 parent 3a3d0fd
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -2614,6 +2614,7 @@
        (progn
          (setq projectile-completion-system 'default)
          (setq projectile-enable-caching t)
+         (setq projectile-indexing-method 'alien)
          (projectile-global-mode)))
    #+END_SRC
 
@@ -2622,7 +2623,11 @@
    #+BEGIN_SRC emacs-lisp
      (use-package helm-projectile
        :ensure t
-       :config (helm-projectile-on))
+       :config
+       (progn
+         (setq projectile-switch-project-action 'helm-projectile)
+         (helm-projectile-on))
+       )
    #+END_SRC
 
 *** Perspective
@@ -2636,9 +2641,9 @@
       (use-package persp-projectile
         :ensure t
         :requires perspective
-        :config
+        :init
         (progn
-          (define-key projectile-mode-map (kbd "s-s") 'projectile-persp-switch-project)
+          (define-key projectile-command-map (kbd "p") 'projectile-persp-switch-project)
           (persp-mode)))
     #+END_SRC
 ** Compilation mode