Files
.emacs.d/modules/projects/siren-helm-projectile.el

22 lines
527 B
EmacsLisp

;;; siren-helm-projectile.el --- jimeh's Emacs Siren: helm-projectile configuration.
;;; Commentary:
;; Basic configuration for helm-projectile.
;;; Code:
(require 'siren-helm)
(require 'siren-projectile)
(use-package helm-projectile
:after (helm-global-bindings)
:bind
("C-x ;" . helm-projectile-find-file)
("C-x C-;" . 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