TOP LSP Can be found in the marketplace of VSCode.
Nvim
Clone the repo git clone git@github.com:Mclilzee/toplsp.git
Install packages npm run install-dependencies
Build npm run esbuild
Put the path of ./server/out/main.js to be launched from Nvim, in config autcommand:
Make sure to replace rootPath with the real path of the directory.
local client = vim.lsp.start_client({
name = "toplsp",
cmd = { "node", "rootPath/toplsp/server/out/main.js" },
})
if not client then
return
end