2024-07-04 10:55:27 +02:00
|
|
|
return {
|
|
|
|
{ -- Add indentation guides even on blank lines
|
|
|
|
'lukas-reineke/indent-blankline.nvim',
|
|
|
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
|
|
-- See `:help ibl`
|
|
|
|
main = 'ibl',
|
2024-07-04 19:03:42 +02:00
|
|
|
opts = {
|
|
|
|
indentLine_enabled = 1,
|
|
|
|
filetype_exclude = {
|
|
|
|
'help',
|
|
|
|
'terminal',
|
|
|
|
'lazy',
|
|
|
|
'lspinfo',
|
|
|
|
'TelescopePrompt',
|
|
|
|
'TelescopeResults',
|
|
|
|
'mason',
|
|
|
|
'dashboard',
|
|
|
|
'',
|
|
|
|
},
|
|
|
|
buftype_exclude = { 'terminal' },
|
|
|
|
show_trailing_blankline_indent = false,
|
|
|
|
show_first_indent_level = false,
|
|
|
|
show_current_context = true,
|
|
|
|
show_current_context_start = true,
|
|
|
|
},
|
2024-07-04 10:55:27 +02:00
|
|
|
},
|
|
|
|
}
|