This commit is contained in:
2025-06-17 22:33:09 +08:00
parent 956b146cb2
commit 0bde25e91d
28 changed files with 858 additions and 40 deletions

View File

@ -0,0 +1,45 @@
return {
{
"lukas-reineke/indent-blankline.nvim",
event = "VeryLazy",
opts = {
indent = {
char = "",
tab_char = "",
},
},
main = "ibl",
config = function(_, opts)
require("ibl").setup(opts)
end,
},
{
"echasnovski/mini.indentscope",
version = false,
event = "VeryLazy",
opts = {
symbol = "",
options = { try_as_border = true },
},
init = function()
vim.api.nvim_create_autocmd("FileType", {
pattern = {
"help",
"alpha",
"dashboard",
"neo-tree",
"Trouble",
"trouble",
"lazy",
"mason",
"notify",
"toggleterm",
"lazyterm",
},
callback = function()
vim.b.miniindentscope_disable = true
end,
})
end,
},
}