How can I use forked plugins with dev options in LazyVim? #560
Answered
by
folke
boltlessengineer
asked this question in
Q&A
-
Although I mentioned LazyVim in the title, it seems like a problem to be solved in lazy.nvim, so I'm leaving a question here. I want to fork the alpha-nvim plugin and use the forked version, but it fails with the error message below even if I use the
-- lua/plugins/ui.lua
return {
{
"goolord/alpha-nvim",
enabled = false,
},
{
"boltlessengineer/alpha-nvim",
dev = true,
...
},
} |
Beta Was this translation helpful? Give feedback.
Answered by
folke
Feb 17, 2023
Replies: 1 comment 1 reply
-
for the second one with dev plugins are always managed by the user, so you should do the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
boltlessengineer
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for the second one with
dev=true
, just keepgoolord/alpha-nvim
.dev plugins are always managed by the user, so you should do the
git clone
of your fork manually of course.