diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2023-10-31 10:40:03 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2023-10-31 10:40:03 +0530 |
commit | f44fd24bb87f2bc615d81dc40017fcdca3462a76 (patch) | |
tree | ecdd0120abeaffd548d7f9760655243b4f593643 | |
parent | 0e4f2398ac4f620c64655a32f8360096a0d932e3 (diff) |
nvim: keymaps: use Ripgrep instead of the_silver_searcher
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r-- | lua/core/keymaps.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/keymaps.lua b/lua/core/keymaps.lua index c5bc42e..1305224 100644 --- a/lua/core/keymaps.lua +++ b/lua/core/keymaps.lua @@ -39,7 +39,7 @@ map('t', 'C-w', '<C-\\><C-n><C-w>') map('n', '<leader>B', ':Buffers<CR>') -- FZF show open buffers map('n', '<leader>F', ':Files<CR>') -- FZF show files -map('n', '<leader>A', ':Ag<CR>') -- FZF call the the_silver_searcher +map('n', '<leader>A', ':Rg<CR>') -- FZF call ripgrep map('n', '<leader>C', ':Commits<CR>') -- FZF show git commits map('n', '<leader>M', ':Maps<CR>') -- FZF show normal mode mappings |