mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 06:27:14 +01:00
12 lines
253 B
Lua
12 lines
253 B
Lua
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
|
|
},
|
|
}
|