kickstart.nvim/lua/custom/plugins/grug-far.lua

17 lines
421 B
Lua
Raw Normal View History

2024-12-09 13:34:41 +03:00
return {
{
'MagicDuck/grug-far.nvim',
2025-02-14 00:39:46 +03:00
init = function()
-- vim.g.copilot_enabled = false
vim.keymap.set('n', '<leader>g', ':GrugFar<CR>')
end,
2024-12-09 13:34:41 +03:00
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,
},
}