mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
25 lines
496 B
EmacsLisp
Executable File
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
|