add indent_line and simplify uv

This commit is contained in:
Jason Miller 2024-12-07 12:44:06 -05:00
parent 29efb5d532
commit 9936f43124
2 changed files with 17 additions and 14 deletions

View file

@ -0,0 +1,14 @@
return {
{ -- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
config = function()
-- passing as an option does not work correctly at present w/ toggle
require('ibl').setup {}
require('ibl').update { enabled = false }
end,
keys = {
{ '<Leader>ib', '<cmd>IBLToggle<cr>', desc = 'Indent lines toggle' },
},
},
}