-
I keep getting this error on loading nvim at a path (not home):
The rootUri was home in the logs as well:
These are the logs but they don't mention anything as to WHY this workspace is being taken instead of the one I'm opening:
This is how I'm initialising lua la in nvim:
These are the full logs:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I believe this is related: #2975 (comment) In short, the manager part of latest version of |
Beta Was this translation helpful? Give feedback.
I believe this is related: #2975 (comment)
In short, the manager part of latest version of
lspconfig
has some bugs when sending the workspace root to language server.However that part is deprecated and won't be fixed because neovim now uses
vim.lsp.config
to setup lsp.I think you will need to migrate your lsp settings to use
vim.lsp.config
instead.