16 lines
336 B
Lua
16 lines
336 B
Lua
return {
|
|
'folke/snacks.nvim',
|
|
dependencies = {
|
|
{ 'echasnovski/mini.icons', },
|
|
},
|
|
config = function()
|
|
require'snacks'.setup({
|
|
animate = { enabled = true },
|
|
bigfile = { enabled = true },
|
|
image = { enabled = true },
|
|
indent = { enabled = true },
|
|
scroll = { enabled = true },
|
|
})
|
|
end
|
|
}
|