SoloVim/lua/plugins/ibl.lua
2024-01-24 21:28:12 +02:00

42 lines
637 B
Lua

return {
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
config = function()
require("ibl").setup({
enabled = true,
indent = {
smart_indent_cap = true,
},
whitespace = {
remove_blankline_trail = true,
},
scope = {
show_start = true,
show_end = true,
show_exact_scope = true,
},
exclude = {
filetypes = {
"NvimTree",
"Trouble",
"alpha",
"dashboard",
"help",
"lazy",
"neogitstatus",
"packer",
"startify",
"lspinfo",
},
buftypes = {
"terminal",
"nofile",
"quickfix",
"prompt",
},
},
})
end,
}