emacs - rainbow-delimiters package to color parentheses
[dotfiles.git] / emacs.d / elisp / init-projectile.el
index 31e0453..dff7c4d 100644 (file)
@@ -1,5 +1,8 @@
 
 
+;; http://batsov.com/projectile/
+;; Todo add svn repo support
+
 (use-package projectile
   :ensure t
   :init
   (projectile-global-mode))
 
 
+(use-package helm-projectile
+  :ensure t
+  :init
+  (setq helm-projectile-fuzzy-match nil)
+  :config
+  (helm-projectile-on)
+  :bind (("s-f" . helm-projectile-find-file)
+        ("s-b" . helm-projectile-switch-to-buffer)))
+
+(use-package perspective
+  :ensure t
+  :config
+  (persp-mode))
+
+(use-package persp-projectile
+  :ensure t
+  :config
+  (define-key projectile-mode-map (kbd "s-p") 'projectile-persp-switch-project))
+
 
 (provide 'init-projectile)