mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
As `C-;` cannot be used in terminals, make `C-x C-;` and `C-x ;` both trigger the command I use the most, `help-projectile-find-file`. It's still easy to trigger `helm-projectile` via `C-c p h`, wherein `C-c p` is the projectile prefix.
20 lines
467 B
EmacsLisp
20 lines
467 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-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
|