🐛 fix(nvim): outline now shows up on edgy
This commit is contained in:
parent
d5e8e84a79
commit
d692c2a4f0
2 changed files with 4 additions and 3 deletions
|
@ -3,7 +3,6 @@
|
||||||
"lazyvim.plugins.extras.coding.yanky",
|
"lazyvim.plugins.extras.coding.yanky",
|
||||||
"lazyvim.plugins.extras.dap.core",
|
"lazyvim.plugins.extras.dap.core",
|
||||||
"lazyvim.plugins.extras.dap.nlua",
|
"lazyvim.plugins.extras.dap.nlua",
|
||||||
"lazyvim.plugins.extras.editor.symbols-outline",
|
|
||||||
"lazyvim.plugins.extras.formatting.black",
|
"lazyvim.plugins.extras.formatting.black",
|
||||||
"lazyvim.plugins.extras.formatting.prettier",
|
"lazyvim.plugins.extras.formatting.prettier",
|
||||||
"lazyvim.plugins.extras.lang.docker",
|
"lazyvim.plugins.extras.lang.docker",
|
||||||
|
@ -46,6 +45,7 @@
|
||||||
"plugins.extras.editor.harpoon",
|
"plugins.extras.editor.harpoon",
|
||||||
"plugins.extras.editor.live-server",
|
"plugins.extras.editor.live-server",
|
||||||
"plugins.extras.editor.numb",
|
"plugins.extras.editor.numb",
|
||||||
|
"plugins.extras.editor.outline",
|
||||||
"plugins.extras.editor.package-info",
|
"plugins.extras.editor.package-info",
|
||||||
"plugins.extras.editor.rayso",
|
"plugins.extras.editor.rayso",
|
||||||
"plugins.extras.editor.regex",
|
"plugins.extras.editor.regex",
|
||||||
|
|
|
@ -13,11 +13,12 @@ return {
|
||||||
"folke/edgy.nvim",
|
"folke/edgy.nvim",
|
||||||
optional = true,
|
optional = true,
|
||||||
opts = function(_, opts)
|
opts = function(_, opts)
|
||||||
|
opts.right = opts.right or {}
|
||||||
table.insert(opts.right, {
|
table.insert(opts.right, {
|
||||||
title = "Symbols Outline",
|
title = "Symbols Outline",
|
||||||
ft = "outline",
|
ft = "Outline",
|
||||||
pinned = true,
|
pinned = true,
|
||||||
open = "Outline",
|
open = "OutlineOpen",
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue