mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Since I mostly use C-x C-m instead of M-x, let's setup helm-M-x via my preferred keybinding, leaving smex available for now vix M-x.
24 lines
405 B
EmacsLisp
24 lines
405 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
|
|
("C-x C-m" . helm-M-x)
|
|
("C-c C-m" . helm-M-x)
|
|
|
|
:config
|
|
(setq helm-M-x-always-save-history t
|
|
helm-M-x-fuzzy-match t))
|
|
|
|
(provide 'siren-helm-command)
|
|
;;; siren-helm-command.el ends here
|