From: Armaan Bhojwani Date: Sat, 19 Jun 2021 00:21:31 +0000 (-0400) Subject: Update anzu config X-Git-Url: https://git.armaanb.net/?p=config.org.git;a=commitdiff_plain;h=f2e9f2d8fc2b792d3d036c9b7c61ad4eac0f771b Update anzu config --- diff --git a/config.org b/config.org index 9e96fc2..5c2419e 100644 --- a/config.org +++ b/config.org @@ -150,8 +150,12 @@ Soft wrap words and do operations by visual lines in some modes. ** Display number of matches in search #+begin_src emacs-lisp (use-package anzu + :after (evil) :config (global-anzu-mode) :bind + ([remap isearch-forward] . isearch-forward-regexp) + ([remap isearch-backward] . isearch-backward-regexp) + ([remap query-replace] . anzu-query-replace) ([remap query-replace] . anzu-query-replace) ([remap query-replace-regexp] . anzu-query-replace-regexp)) #+end_src