aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-11-08 17:11:27 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-11-08 17:11:27 +0000
commitd04a5eb3efc2b5285ba63adc2e89b6b51ab6e54c (patch)
tree8f6a41bcd0b651d922268d247e7fea48d830e31a
parent30c1e40a01aac64064ae4a2706863c2d45920e35 (diff)
downloaddotfiles-d04a5eb3efc2b5285ba63adc2e89b6b51ab6e54c.tar.gz
dotfiles-d04a5eb3efc2b5285ba63adc2e89b6b51ab6e54c.zip
Fix counsel bindings
-rw-r--r--emacs/loader.org10
1 files changed, 4 insertions, 6 deletions
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: