From d04a5eb3efc2b5285ba63adc2e89b6b51ab6e54c Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 8 Nov 2018 17:11:27 +0000 Subject: Fix counsel bindings --- emacs/loader.org | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'emacs') diff --git a/emacs/loader.org b/emacs/loader.org index 85bbfb1..5468c64 100644 --- a/emacs/loader.org +++ b/emacs/loader.org @@ -529,16 +529,14 @@ Set navigation commands in all the buffers ("C-x C-f" . counsel-find-file) ("C-c g" . counsel-git) ("C-c j" . counsel-git-grep) - ("C-c k" . counsel-ag) ("C-c C-r" . ivy-resume) - ("C-x b" . counsel-ibuffer) - ("C-c y u" . counsel-unicode-char)) + ("C-x b" . ivy-switch-buffer) + ("C-x 8 RET" . counsel-unicode-char)) :config + (counsel-mode t) (setq ivy-use-virtual-buffers t) (setq ivy-count-format "(%d/%d) ") - (setq ivy-re-builders-alist - '((swiper . ivy--regex-plus) - (t . ivy--regex-fuzzy)))) + (define-key minibuffer-local-map (kbd "C-r") 'counsel-minibuffer-history)) #+END_SRC #+RESULTS: -- cgit