Files
dotfiles/.config/nvim/lua/plugins/indent-blankline.lua
2025-05-26 07:39:19 +03:00

26 lines
357 B
Lua

return {
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
opts = {
indent = {
char = "",
},
scope = {
show_start = false,
show_end = false,
show_exact_scope = false,
},
exclude = {
filetypes = {
"help",
"startify",
"dashboard",
"packer",
"neogitstatus",
"NvimTree",
"Trouble",
},
},
},
}