Files
.emacs.d/modules/tools/siren-helm-make.el
Jim Myhrberg efecb5172c chore(startup): Make various modules more lazy-loaded
This should improve startup speed a little bit.
2020-03-15 02:44:46 +00:00

25 lines
466 B
EmacsLisp

;;; 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
:defer t
: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