feat(nvim): outline extra

symbols-outline fork with more features, still needs more testing
This commit is contained in:
Sergio Laín 2023-11-16 02:20:19 +01:00
parent 2902be65a5
commit 3e564a7164
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -0,0 +1,25 @@
return {
{
"hedyhli/outline.nvim",
cmd = { "Outline", "OutlineOpen" },
keys = { { "<leader>cs", "<cmd>Outline<CR>", desc = "Symbols Outline" } },
opts = {
outline_window = {
show_symbol_lineno = true,
},
},
},
{
"folke/edgy.nvim",
optional = true,
opts = function(_, opts)
opts.right = opts.right or {}
table.insert(opts.right, {
title = "Symbols Outline",
ft = "outline",
pinned = true,
open = "Outline",
})
end,
},
}