emacs - add projectile perspective
[dotfiles.git] / emacs.d / config / init-projectile.el
index 866cf7e..9ba616f 100644 (file)
@@ -2,15 +2,24 @@
 
 
 (require 'projectile)
+(require 'projectile-speedbar)
 
 
 (projectile-global-mode)
+
 (setq projectile-enable-caching t)
+(setq projectile-indexing-method 'native)
 
+;; with helm
+(require 'helm-projectile)
+(helm-projectile-on)
 
-(require 'projectile-speedbar)
 
+(setq projectile-switch-project-action 'helm-projectile-find-file)
 
+;; with - perspective
+(persp-mode)
+(require 'persp-projectile)
 
 (provide 'init-projectile)