add outlint plugin

This commit is contained in:
Thomas Ruoff
2025-09-08 15:38:36 +02:00
parent 6ca460d6b7
commit 4817d0881f

11
lua/plugins/outline.lua Normal file
View File

@@ -0,0 +1,11 @@
return {
'hedyhli/outline.nvim',
lazy = true,
cmd = { 'Outline', 'OutlineOpen' },
keys = { -- Example mapping to toggle outline
{ '<leader>o', '<cmd>Outline<CR>', desc = 'Toggle outline' },
},
opts = {
-- Your setup opts here
},
}