-
LSP server setup is taking 50% startup time. I'm trying to lazy load server but getting nil server name when using automatic server setup.
I'm using lazy.nvim
|
Beta Was this translation helpful? Give feedback.
Answered by
mainendra
Mar 7, 2023
Replies: 1 comment
-
It was issue with file name. I was using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mainendra
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It was issue with file name. I was using
lspconfig.lua
file name to setup handler (after/plugin/lspconfig.lua
) and moved that undernvim/lua/lspconfig.lua
. After renaming it tolsp.lua
it started working. Thanks.