emacs - add projectile perspective
[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
13 ;; with helm
14 (require 'helm-projectile)
15 (helm-projectile-on)
16
17
18 (setq projectile-switch-project-action 'helm-projectile-find-file)
19
20 ;; with - perspective
21 (persp-mode)
22 (require 'persp-projectile)
23
24 (provide 'init-projectile)
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39