From afa8c2eab048db294dccec4ad6113ce8977d4bb2 Mon Sep 17 00:00:00 2001 From: David Morgan Date: Wed, 1 Sep 2021 16:23:45 +0100 Subject: [PATCH] Turn on isearch count display --- .emacs.d/lisp/init-search.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/lisp/init-search.el b/.emacs.d/lisp/init-search.el index be4de3c..f9c8c31 100644 --- a/.emacs.d/lisp/init-search.el +++ b/.emacs.d/lisp/init-search.el @@ -9,6 +9,7 @@ (isearch-lax-whitespace t) (isearch-allow-scroll t) (isearch-yank-on-move 'shift) + (isearch-lazy-count t) :bind-keymap ("C-c s" . search-map) ;; M-s clashes with paredit/smartparens bindings :bind ("C-*" . isearch-forward-symbol-at-point)