add grug-far

This commit is contained in:
Dennis Chan 2025-07-16 17:43:44 +08:00
parent 2bf0ff4c16
commit 2776e0b501
2 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,13 @@
return {
'MagicDuck/grug-far.nvim',
-- Note (lazy loading): grug-far.lua defers all it's requires so it's lazy by default
-- additional lazy config to defer loading is not really needed...
config = function()
-- optional setup call to override plugin options
-- alternatively you can set options with vim.g.grug_far = { ... }
require('grug-far').setup {
-- options, see Configuration section below
-- there are no required options atm
}
end,
}