omg-nvim/lua/plugins/blankline.lua
2025-01-10 22:17:29 +03:00

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