mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
19 lines
271 B
Lua
19 lines
271 B
Lua
return {
|
|
"echasnovski/mini.nvim",
|
|
version = "*",
|
|
opts = {
|
|
enabled = {
|
|
"ai",
|
|
-- "pairs",
|
|
"splitjoin",
|
|
"surround",
|
|
"diff",
|
|
},
|
|
},
|
|
config = function(_, opts)
|
|
for _, value in ipairs(opts.enabled) do
|
|
require("mini." .. value).setup()
|
|
end
|
|
end,
|
|
}
|