17 lines
422 B
Lua
17 lines
422 B
Lua
return {
|
|
{
|
|
'MagicDuck/grug-far.nvim',
|
|
init = function()
|
|
-- vim.g.copilot_enabled = false
|
|
vim.keymap.set('n', '<leader>rr', ':GrugFar<CR>')
|
|
end,
|
|
config = function()
|
|
require('grug-far').setup {
|
|
-- options, see Configuration section below
|
|
-- there are no required options atm
|
|
-- engine = 'ripgrep' is default, but 'astgrep' can be specified
|
|
}
|
|
end,
|
|
},
|
|
}
|