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
This commit is contained in:
2025-10-08 19:54:46 +03:00
parent f7194a919e
commit f5c52bcc9d
65 changed files with 1052 additions and 1721 deletions

View File

@@ -1,18 +1,44 @@
return {
"echasnovski/mini.nvim",
version = "*",
opts = {
enabled = {
"ai",
-- "pairs",
"splitjoin",
"surround",
"diff",
{
"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 = "_",
},
},
},
},
config = function(_, opts)
for _, value in ipairs(opts.enabled) do
require("mini." .. value).setup()
end
end,
{
"nvim-mini/mini.ai",
version = "*",
event = "VeryLazy",
opts = {},
},
{
"nvim-mini/mini.splitjoin",
version = "*",
event = "VeryLazy",
opts = {},
},
{
"nvim-mini/mini.surround",
version = "*",
event = "VeryLazy",
opts = {},
},
}