nvim-config11/lua/plugins/snacks.nvim.lua

23 lines
518 B
Lua
Raw Normal View History

2025-03-27 08:18:20 +00:00
return { {
"folke/snacks.nvim",
priority = 1000,
lazy = false,
opts = {
notifier = { enabled = true },
terminal = { enabled = true },
2025-04-04 02:19:24 +01:00
indent = {
enabled = true,
only_scope = true,
only_current = false,
chunk = {
enabled = true
}
},
2025-03-27 08:18:20 +00:00
git = { enabled = true },
gitbrowse = { enabled = true },
2025-03-27 08:18:20 +00:00
bufdelete = { enabled = true },
2025-03-28 01:40:21 +00:00
picker = { enabled = true }
2025-03-27 08:18:20 +00:00
},
} }