Move silver_searcher config

master
Hektor Misplon 2023-12-18 13:57:05 +01:00
parent d6d23f913b
commit 1c8afd0690
Signed by: hektor
GPG Key ID: 5151AF79E723F21C
1 changed files with 3 additions and 3 deletions

6
.vimrc
View File

@ -74,9 +74,6 @@ ino <up> <nop>| " "
ino <right> <nop>| " "
" Search
nn <c-_> :noh<cr>| " map 'ctrl + /'
" Use `the_silver_searcher` to find results (for selection if selection)
nn <leader>f :Ag <cr>
vm <leader>f y:Ag <C-r>"<cr>
" Toggle line numbers
nn <leader>n :set nu! rnu!<cr>
" 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 <leader>f :Ag<cr>
vm <leader>f y:Ag <C-r>"<cr>
" }}}