SoloVim/lua/plugins/mini.lua
Kristofers Solo f5c52bcc9d
Update 2025-10-31
update 2025-10-08

chore: update readme

Update 2025-10-09

Update 2025-10-15

Update 2025-10-22

Update 2025-10-31
2025-10-31 11:59:53 +02:00

45 lines
598 B
Lua

return {
{
"nvim-mini/mini.diff",
version = "*",
event = "VeryLazy",
keys = {
{
"<leader>gd",
function()
MiniDiff.toggle_overlay(0)
end,
desc = "Git Diff",
},
},
opts = {
view = {
style = "sign",
signs = {
add = "",
change = "",
delete = "_",
},
},
},
},
{
"nvim-mini/mini.ai",
version = "*",
event = "VeryLazy",
opts = {},
},
{
"nvim-mini/mini.splitjoin",
version = "*",
event = "VeryLazy",
opts = {},
},
{
"nvim-mini/mini.surround",
version = "*",
event = "VeryLazy",
opts = {},
},
}