emacs - change modeline add projectile-name
[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 (setq projectile-switch-project-action 'projectile-dired)
20
21 ;; with - perspective
22 (persp-mode)
23 (require 'persp-projectile)
24
25 (provide 'init-projectile)
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40