Files
nvim-modular/lua/kickstart/plugins/snacks.lua
2025-08-28 23:17:34 +02:00

36 lines
880 B
Lua

-- snacks
--
-- A collection of small QoL plugins for Neovim.
--
-- https://github.com/folke/snacks.nvim
--
return {
{
'folke/snacks.nvim',
priority = 1000,
lazy = false,
-- -@type snacks.Config
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
bigfile = { enabled = false },
dashboard = { enabled = false },
explorer = { enabled = false },
indent = { enabled = false },
input = { enabled = false },
picker = { enabled = false },
notifier = { enabled = false },
quickfile = { enabled = false },
scope = { enabled = false },
scroll = { enabled = false },
statuscolumn = { enabled = false },
words = { enabled = false },
image = {
enabled = true,
},
},
},
}