2024-01-08 18:09:07 +05:30
|
|
|
return {
|
|
|
|
-- Add indentation guides even on blank lines
|
|
|
|
'lukas-reineke/indent-blankline.nvim',
|
|
|
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
|
|
-- See `:help ibl`
|
2024-01-10 12:05:48 +05:30
|
|
|
dependencies = { 'HiPhish/rainbow-delimiters.nvim' },
|
2024-01-09 16:53:14 +05:30
|
|
|
event = { 'BufReadPre', 'BufNewFile' },
|
2024-01-08 18:09:07 +05:30
|
|
|
main = 'ibl',
|
2024-01-09 16:53:14 +05:30
|
|
|
opts = {
|
2024-01-10 12:05:48 +05:30
|
|
|
scope = { highlight = { 'RainbowDelimiterRed' }, char = '▎', show_start = true },
|
2024-01-09 16:53:14 +05:30
|
|
|
exclude = {
|
2024-01-10 12:05:48 +05:30
|
|
|
buftypes = { 'dashboard', 'alpha', 'help', 'lazy', 'mason' },
|
2024-01-09 16:53:14 +05:30
|
|
|
},
|
|
|
|
},
|
2024-01-08 18:09:07 +05:30
|
|
|
}
|