]> git.armaanb.net Git - config.org.git/commitdiff
Update anzu config
authorArmaan Bhojwani <me@armaanb.net>
Sat, 19 Jun 2021 00:21:31 +0000 (20:21 -0400)
committerArmaan Bhojwani <me@armaanb.net>
Sat, 19 Jun 2021 00:21:31 +0000 (20:21 -0400)
config.org

index 9e96fc2ac0af7f6086927867c74c081c7c92f920..5c2419e00478da8b2b9b5bfafe67694a2fec4698 100644 (file)
@@ -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