Indent lines and debug stop added

This commit is contained in:
jbates35 2024-06-30 13:53:37 -07:00
parent de2044b7e8
commit 03affc6b7f
2 changed files with 15 additions and 1 deletions

View file

@ -4,6 +4,20 @@ return {
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl`
main = 'ibl',
init = function()
local highlight = {
'CursorColumn',
'Whitespace',
}
require('ibl').setup {
indent = { highlight = highlight, char = '' },
whitespace = {
highlight = highlight,
remove_blankline_trail = false,
},
scope = { enabled = false },
}
end,
opts = {},
},
}