diff options
Diffstat (limited to 'dot_emacs.tmpl')
-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 |