summaryrefslogtreecommitdiffstats
path: root/lisp/init-swiper.el
blob: 90c1665c9cc8bcd2d5578f5894e22d67d712e0d1 (plain) (blame)
1
2
3
4
5
6
7
(use-package swiper
  :bind (("C-s" . swiper)
         ;; C-r selects previous candidate, like isearch
         :map swiper-isearch-map
         ("C-r" . ivy-previous-line-or-history)))

(provide 'init-swiper)