mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 06:24:42 -05:00
37 lines
985 B
Lua
37 lines
985 B
Lua
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
main = "ibl",
|
|
event = { "BufReadPost", "BufNewFile" },
|
|
config = function()
|
|
require("ibl").setup({
|
|
indent = {
|
|
char = "│",
|
|
tab_char = "│",
|
|
},
|
|
scope = {
|
|
enabled = true,
|
|
show_start = true,
|
|
show_end = false,
|
|
injected_languages = true,
|
|
highlight = { "Function", "Label" },
|
|
priority = 500,
|
|
},
|
|
exclude = {
|
|
filetypes = {
|
|
"help",
|
|
"alpha",
|
|
"dashboard",
|
|
"neo-tree",
|
|
"Trouble",
|
|
"trouble",
|
|
"lazy",
|
|
"mason",
|
|
"notify",
|
|
"toggleterm",
|
|
"lazyterm",
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|