Files
.emacs.d/modules/projects/siren-helm-projectile.el
Jim Myhrberg 87a86191db Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
2018-05-20 17:31:11 +01:00

26 lines
704 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 ;" . helm-projectile)
("C-x C-;" . helm-projectile-find-file)
("C-c ;" . helm-projectile-switch-project)
("C-c C-;" . helm-projectile-switch-project)
:config
;; Don't bother with using files in open Dired buffer as initial source for
;; helm-projectile-find-file, just use the list of files.
(setq helm-source-projectile-files-and-dired-list
'(helm-source-projectile-files-list)))
(provide 'siren-helm-projectile)
;;; siren-helm-projectile.el ends here