Load B only when A loads, but use setup opts specfied in B's spec #2083
Unanswered
MartyMcFlyInTheSky
asked this question in
Q&A
Replies: 1 comment 1 reply
-
return {
{
"theHamsta/nvim-dap-virtual-text",
lazy = true,
opts = {
enabled = true,
},
},
{
"mfussenegger/nvim-dap",
dependencies = {
{
"Joakker/lua-json5",
build = "./install.sh",
},
{
"theHamsta/nvim-dap-virtual-text",
},
},
},
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want
nvim-dap-virtual-textto load only whennvim-daploads. However, I don't want to define the opts table withinnvim-daps setup function, but I want to use the table defined innvim-dap-virtual-textspec. How to do it?Here's what I have:
Beta Was this translation helpful? Give feedback.
All reactions