nvim/lua/custom/plugins/indent.lua
Jeremie Fraeys b3b5702588
Some checks failed
Luacheck / luacheck (push) Successful in 11s
StyLua / stylua (push) Failing after 2s
perf: further startup optimizations - defer indent, luasnip, notify, oil, atac, auto-dark-mode
2026-02-08 15:30:13 -05:00

25 lines
528 B
Lua
Executable file

local highlight = {
'Whitespace',
'Function',
}
return {
-- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
event = 'VeryLazy',
opts = {
indent = {
highlight = highlight,
char = '',
},
whitespace = {
highlight = highlight,
remove_blankline_trail = true,
},
scope = {
enabled = true,
exclude = { language = { 'vim', 'lua', 'go', 'python', 'rust', 'sh', 'json', 'yaml', 'toml', 'markdown' } },
},
},
}