diff options
author | Ryan Kavanagh <rak@rak.ac> | 2023-02-14 10:24:48 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2023-02-14 10:24:48 -0500 |
commit | 277fe2bc1e7e669c87a957ff3d259e2c9004d8cc (patch) | |
tree | ce399bbd37e485733c18f419833f37a46a9e20bd | |
parent | golly (diff) |
counsel-M-x should search for arbitrary substrings by default
-rw-r--r-- | dot_emacs.tmpl | 12 |
1 files 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 |