nvim lazy plugin management part 1

This commit is contained in:
2025-07-15 15:41:50 +05:00
parent 3812064349
commit 0d1b98f65e
30 changed files with 637 additions and 935 deletions

View File

@ -0,0 +1,14 @@
return {
"lukas-reineke/indent-blankline.nvim",
event = "VeryLazy",
opts = {
scope = {
enabled = true,
show_start = false,
show_end = false,
},
},
config = function (_, _opts)
require("ibl").setup(_opts)
end
}