From d5f7c0c27d47aa14fdde447e7dbc095d72d6361d Mon Sep 17 00:00:00 2001 From: Marc Date: Mon, 12 Oct 2020 11:26:13 +0200 Subject: [PATCH] more bindings to counsel --- init.org | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/init.org b/init.org index 914b0ce..94377db 100644 --- a/init.org +++ b/init.org @@ -420,7 +420,7 @@ Windows Theme: ivy-re-builders-alist ;; regex replaces spaces with * '((t . ivy--regex-plus)))) -; make M-x more descriptive +; make counsel-M-x more descriptive (use-package ivy-rich :ensure t :init @@ -428,14 +428,17 @@ Windows Theme: (use-package counsel :ensure t - :bind* + :bind (("M-x" . counsel-M-x) ("C-x C-f" . counsel-find-file) ("C-x C-r" . counsel-recentf) + ("C-x b" . counsel-ibuffer) ("C-c C-f" . counsel-git) ("C-c h f" . counsel-describe-function) ("C-c h v" . counsel-describe-variable) ("M-i" . counsel-imenu))) +; :map minibuffer-local-map ;;currently mapped to evil-redo +; ("C-r" . 'counsel-minibuffer-history))) (use-package swiper :ensure t