From 1c8afd06901257177e93c76db514745afe2ff664 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Mon, 18 Dec 2023 13:57:05 +0100 Subject: [PATCH] Move silver_searcher config --- .vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index ec23635..f1fd5ea 100644 --- a/.vimrc +++ b/.vimrc @@ -74,9 +74,6 @@ ino | " " ino | " " " Search nn :noh| " map 'ctrl + /' -" Use `the_silver_searcher` to find results (for selection if selection) -nn f :Ag -vm f y:Ag " " Toggle line numbers nn n :set nu! rnu! " Vim configuration @@ -218,6 +215,9 @@ let g:pandoc#syntax#conceal#urls=1 let g:pandoc#syntax#conceal#blacklist=[] let g:pandoc#syntax#style#emphases=0 " Bug workaround let g:pandoc#syntax#conceal#cchar_overrides = { "atx": " ", "li": "ยท" } +" Use `the_silver_searcher` to find results (for selection if selection) +nn f :Ag +vm f y:Ag " " }}}