53a11e3f0bc32b1af3660a3b6c43a8d83ba9c3e9
[dotfiles.git] / emacs.d / config / init-projectile.el
1
2
3
4 (require 'projectile)
5 (require 'projectile-speedbar)
6
7
8 (projectile-global-mode)
9
10 (setq projectile-enable-caching t)
11 ;(setq projectile-indexing-method 'native)
12 (setq projectile-indexing-method 'alien)
13 ;; with helm
14 (require 'helm-projectile)
15 (helm-projectile-on)
16
17
18 ;(setq projectile-switch-project-action 'helm-projectile-find-file)
19 (setq projectile-switch-project-action 'projectile-dired)
20
21 ;; https://www.reddit.com/r/emacs/comments/2pvmkm/helm_projectile_now_enables_fuzzy_matching_by/
22 (setq helm-projectile-fuzzy-match nil)
23
24 ;; with - perspective
25 (persp-mode)
26 (require 'persp-projectile)
27
28 (provide 'init-projectile)
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43