feat(tools): Add helm-make package

This commit is contained in:
2020-03-06 11:51:42 +00:00
parent ced8ae8c88
commit 79caa36d95
2 changed files with 24 additions and 0 deletions

View File

@@ -119,6 +119,7 @@
;; Tools
(require 'siren-docker)
(require 'siren-helm-make)
(require 'siren-kubernetes)
;; Writing

View File

@@ -0,0 +1,23 @@
;;; 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
: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