Files
.emacs.d/modules/tools/siren-helm-make.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

25 lines
496 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-global-bindings)
:general
(:keymaps '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