mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
I mostly use C-x C-m instead of M-x as I for some reason find it less annoying to type. I really like helm-command's helm-M-x function, but I find slightly too slow and slightly too intrusive than smex. Hence I'm switching back my main keybinding to smex, but still leaving helm-M-x bound to the M-x keybinding I use very rarely, just so I can still access it when I need to.
23 lines
376 B
EmacsLisp
23 lines
376 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)
|
|
|
|
: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
|