Files
config.nvim/lua/plug/gui_indentline.lua
2025-06-17 22:33:09 +08:00

46 lines
1.1 KiB
Lua

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,
},
}