dotfiles/.config/nvim/lua/plugins/extras/editor/outline.lua
2023-11-26 01:38:33 +01:00

24 lines
497 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)
table.insert(opts.right, {
title = "Symbols Outline",
ft = "outline",
pinned = true,
open = "Outline",
})
end,
},
}