mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
This involved always loading `helm-config` which sets up `helm-command-prefix` and `helm-command-map` allowing use-package to set bindings on the map all without loading anything else until needed.
25 lines
478 B
EmacsLisp
Executable File
25 lines
478 B
EmacsLisp
Executable File
;;; siren-helm-make.el --- jimeh's Emacs Siren: helm-make configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for helm-make.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-helm)
|
|
|
|
(use-package helm-make
|
|
:after (helm-config)
|
|
:bind
|
|
(:map helm-command-map
|
|
("m" . helm-make-projectile))
|
|
|
|
:custom
|
|
(helm-make-cache-targets nil)
|
|
(helm-make-do-save t)
|
|
(helm-make-fuzzy-matching t)
|
|
(helm-make-list-target-method 'qp))
|
|
|
|
(provide 'siren-helm-make)
|
|
;;; siren-helm-make.el ends here
|