From 277fe2bc1e7e669c87a957ff3d259e2c9004d8cc Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Tue, 14 Feb 2023 10:24:48 -0500 Subject: counsel-M-x should search for arbitrary substrings by default --- dot_emacs.tmpl | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/dot_emacs.tmpl b/dot_emacs.tmpl index 56326ed..34587cb 100644 --- a/dot_emacs.tmpl +++ b/dot_emacs.tmpl @@ -277,10 +277,14 @@ Extended Format date in the date field and return it as a string obeing (use-package counsel :ensure t - :bind (("C-x C-b" . counsel-ibuffer) - ("C-x C-f" . counsel-find-file) - ("M-x" . counsel-M-x) - ("M-y" . counsel-yank-pop))) + :bind + (("C-x C-b" . counsel-ibuffer) + ("C-x C-f" . counsel-find-file) + ("M-x" . counsel-M-x) + ("M-y" . counsel-yank-pop)) + :config + (add-to-list 'ivy-initial-inputs-alist + '(counsel-M-x . ""))) (use-package cus-edit :custom -- cgit v1.2.3