emacs - fix issue in terminal emacs, only set font in gui
[dotfiles.git] / emacs.d / config / init-projectile.el
index 866cf7e..53a11e3 100644 (file)
@@ -2,15 +2,28 @@
 
 
 (require 'projectile)
+(require 'projectile-speedbar)
 
 
 (projectile-global-mode)
+
 (setq projectile-enable-caching t)
+;(setq projectile-indexing-method 'native)
+(setq projectile-indexing-method 'alien)
+;; with helm
+(require 'helm-projectile)
+(helm-projectile-on)
 
 
-(require 'projectile-speedbar)
+;(setq projectile-switch-project-action 'helm-projectile-find-file)
+(setq projectile-switch-project-action 'projectile-dired)
 
+;; https://www.reddit.com/r/emacs/comments/2pvmkm/helm_projectile_now_enables_fuzzy_matching_by/
+(setq helm-projectile-fuzzy-match nil)
 
+;; with - perspective
+(persp-mode)
+(require 'persp-projectile)
 
 (provide 'init-projectile)