mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-23 13:48:35 +02:00
25 lines
675 B
Lua
25 lines
675 B
Lua
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 = true },
|
|
dashboard = {
|
|
enabled = true,
|
|
},
|
|
explorer = { enabled = false },
|
|
indent = { enabled = true },
|
|
input = { enabled = false },
|
|
picker = { enabled = false },
|
|
notifier = { enabled = false },
|
|
quickfile = { enabled = true },
|
|
scope = { enabled = true },
|
|
scroll = { enabled = true },
|
|
statuscolumn = { enabled = false },
|
|
words = { enabled = false },
|
|
},
|
|
}
|