22 lines
314 B
Lua
22 lines
314 B
Lua
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
main = "ibl",
|
|
---@module "ibl"
|
|
---@type ibl.config
|
|
opts = {},
|
|
config = function()
|
|
require("ibl").setup({
|
|
exclude = {
|
|
filetypes = {
|
|
"lspinfo",
|
|
"packer",
|
|
"checkhealth",
|
|
"help",
|
|
"man",
|
|
"dashboard",
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|