add snack

This commit is contained in:
Dennis Chan 2025-07-16 18:04:38 +08:00
parent 2776e0b501
commit b6c886310b
7 changed files with 55 additions and 142 deletions

13
lua/plugins/grug-far.lua Normal file
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,
}