Iordanis Petkakis
Iordanis Petkakis
Sorry, but I'm just a simple user like you and I have limited programming knowledge and haven't dug into `lazy.nvim`'s code. I just remembered something similar was asked in that...
I'm not sure if the dependency is treated as a link. But I've seen numerous examples where the plugin spec is defined in some other place and then the plugin...
For an example you can see in LazyVim for Mason. Here is its [plugin spec](https://github.com/LazyVim/LazyVim/blob/ec5981dfb1222c3bf246d9bcaa713d5cfa486fbd/lua/lazyvim/plugins/lsp/init.lua#L260-L260) and then here it's also defined as a dependency for [conform.nvim](https://github.com/LazyVim/LazyVim/blob/ec5981dfb1222c3bf246d9bcaa713d5cfa486fbd/lua/lazyvim/plugins/formatting.lua#L23-L23). But that only ensures...
Specifying dependencies only affects the loading order of the plugins. Not the execution of the plugins' `init` function. They are 2 different things to the best of my understanding. I...
As the current design stands, dependencies and in general plugin specs have nothing to do with `init` functions. I'm not sure how big of a refactor that could entail and...
Hey @abeldekat I thought of something but not sure at all if it works. Could you try something along these lines ```diff diff --git a/lua/lazy/core/loader.lua b/lua/lazy/core/loader.lua index 1501efd..bdcbc38 100644 ---...
Hi @abeldekat would you be willing to test the following patch ```diff diff --git a/lua/lazy/core/loader.lua b/lua/lazy/core/loader.lua index 1501efd..bdcbc38 100644 --- a/lua/lazy/core/loader.lua +++ b/lua/lazy/core/loader.lua @@ -529,7 +529,7 @@ function M.colorscheme(name) end...
Thank you for your insight. Indeed if there's another `blink` nested in the modname, then it would not actually find the correct location of the directory top module. It also...