Files
.emacs.d/modules/projects/siren-helm-projectile.el
Jim Myhrberg e2d2a46f27 Update projectile and helm-projectile setup
Importantly, this includes setting the projectile indexing method to
hybrid, as the default alien makes it skip sorting results altogether.
2018-12-20 03:35:19 +00:00

20 lines
457 B
EmacsLisp

;;; siren-helm-projectile.el --- jimeh's Emacs Siren: helm-projectile configuration.
;;; Commentary:
;; Basic configuration for helm-projectile.
;;; Code:
(require 'siren-helm)
(use-package helm-projectile
:bind
("C-x C-;" . helm-projectile)
("C-x ;" . helm-projectile-find-file)
("C-c ;" . helm-projectile-switch-project)
("C-c C-;" . helm-projectile-switch-project))
(provide 'siren-helm-projectile)
;;; siren-helm-projectile.el ends here