commit dc093d35b6cf967db6199ad51c8bb673648a1ace
parent 352aa3821937c38ddf96f7a170346987ca1f8269
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date: Fri, 6 Jul 2018 15:25:49 -0500
Separate counsel and swiper settings from ivy.
Diffstat:
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/README.org b/README.org
@@ -315,8 +315,11 @@ Swiper, an Ivy-enhanced alternative to isearch.
;; Use C-l to go back one level.
(define-key ivy-minibuffer-map (kbd "C-l") 'ivy-backward-delete-char)
:bind
- (("C-s" . swiper)
- ("M-x" . counsel-M-x)
+ (("C-c C-r" . ivy-resume)))
+ (use-package counsel
+ :ensure t
+ :bind
+ (("M-x" . counsel-M-x)
("M-y" . counsel-yank-pop)
("C-c c f" . counsel-git)
("C-c c s" . counsel-git-grep)
@@ -328,8 +331,11 @@ Swiper, an Ivy-enhanced alternative to isearch.
("C-h l" . counsel-find-library)
("C-h b" . counsel-descbinds)
("C-h i" . counsel-info-lookup-symbol)
- ("<f2> u" . counsel-unicode-char)
- ("C-c C-r" . ivy-resume)))
+ ("<f2> u" . counsel-unicode-char)))
+ (use-package swiper
+ :ensure t
+ :bind
+ (("C-s" . swiper)))
#+END_SRC
*** Integration