🐛 fix(nvim): outline now shows up on edgy

This commit is contained in:
Sergio Laín 2023-11-26 23:56:02 +01:00
parent d5e8e84a79
commit d692c2a4f0
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 4 additions and 3 deletions

View file

@ -3,7 +3,6 @@
"lazyvim.plugins.extras.coding.yanky",
"lazyvim.plugins.extras.dap.core",
"lazyvim.plugins.extras.dap.nlua",
"lazyvim.plugins.extras.editor.symbols-outline",
"lazyvim.plugins.extras.formatting.black",
"lazyvim.plugins.extras.formatting.prettier",
"lazyvim.plugins.extras.lang.docker",
@ -46,6 +45,7 @@
"plugins.extras.editor.harpoon",
"plugins.extras.editor.live-server",
"plugins.extras.editor.numb",
"plugins.extras.editor.outline",
"plugins.extras.editor.package-info",
"plugins.extras.editor.rayso",
"plugins.extras.editor.regex",

View file

@ -13,11 +13,12 @@ return {
"folke/edgy.nvim",
optional = true,
opts = function(_, opts)
opts.right = opts.right or {}
table.insert(opts.right, {
title = "Symbols Outline",
ft = "outline",
ft = "Outline",
pinned = true,
open = "Outline",
open = "OutlineOpen",
})
end,
},