Some checks are pending
Check Lua Formatting in MyRepo / Stylua Check (push) Waiting to run
24 lines
506 B
Lua
Executable file
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' } },
|
|
},
|
|
},
|
|
}
|