nvim/lua/custom/plugins/indent.lua
Jeremie Fraeys 02e26b00b7
Some checks are pending
Check Lua Formatting in MyRepo / Stylua Check (push) Waiting to run
chore(nvim): reinitialize with working config
2026-02-07 21:06:45 -05:00

24 lines
506 B
Lua
Executable file

local highlight = {
'Whitespace',
'Function',
}
return {
-- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
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' } },
},
},
}