nvim/after/plugin/indent-blankline.lua
Simon Lasbrugnas 8105c69f23
Update config
2023-11-22 02:15:20 +01:00

23 lines
498 B
Lua

require "ibl".setup {
scope = {
enabled = true,
highlight = { "Ignore", "Label" },
show_start = false,
show_end = false,
include = {
node_type = {
lua = { "table_constructor" },
},
},
},
whitespace = {
highlight = "Ignore",
},
indent = {
char = "",
highlight = { "Ignore", "Comment" },
},
exclude = {
buftypes = { "terminal", "nofile" },
},
}