Closed CEbbinghaus closed 4 months ago
A few possible solutions
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.
oh I see you added stalebot, I will have to verify that this is still happening but this is still a relevant issue
That has been fixed at some point
Awesome. Thank you so much <3
Did you check docs and existing issues?
Neovim version (nvim -v)
0.9.0
Operating system/version
Windows 11
Describe the bug
When neoconf is loaded it internally loads "lspconfig" to check if any servers are already active. https://github.com/folke/neoconf.nvim/blob/bbf98ce53481e6e8d6507de5a6f18d3264fb0df7/lua/neoconf/health.lua#L66-L75
This is fine if the only thing using neoconf are plugins that are also dependencies of lspconfig but when an external dependency (especially one that is loaded earlier than lspconfig) is ran it will cause neoconf to load lspconfig before it returns (which in this configuration loads a lsp server).
Steps To Reproduce
Expected Behavior
Neoconf doesn't load lspconfig which creates the server but instead has some way of initializing without fetching the server count or solve it some other way that I haven't thought of
Repro