dotfiles/.config/nvim/lua/plugins/extras/editor/outline.lua
Sergio Laín 3e564a7164
feat(nvim): outline extra
symbols-outline fork with more features, still needs more testing
2023-11-16 02:20:19 +01:00

25 lines
533 B
Lua

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,
},
}