mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
24 lines
368 B
EmacsLisp
24 lines
368 B
EmacsLisp
;;; siren-helm-command.el --- jimeh's Emacs Siren: helm-command.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Configure helm-command.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-helm)
|
|
|
|
(use-package helm-command
|
|
:ensure helm
|
|
:defer t
|
|
|
|
:bind
|
|
("M-x" . helm-M-x)
|
|
|
|
:custom
|
|
(helm-M-x-always-save-history t)
|
|
(helm-M-x-fuzzy-match t))
|
|
|
|
(provide 'siren-helm-command)
|
|
;;; siren-helm-command.el ends here
|