diff --git a/README.md b/README.md index fac6772..ab6eca5 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ lsp-server --stdio Use the following as starting point to add a custom definition for this language server to neovim: ```lua -configs.replyto_ls = { +configs.lsp-server = { default_config = { - cmd = { "replyto-ls", "--stdio"}; + cmd = { "lsp-server", "--stdio"}; autostart = false; filetypes = {'text'}; dynamicRegistration = true; @@ -34,11 +34,10 @@ configs.replyto_ls = { }, } -require'lspconfig'.replyto_ls.setup {} +require'lspconfig'.lsp-server.setup {} ``` - ## Some usfull links - [Language Server Implementations](https://microsoft.github.io/language-server-protocol/implementors/servers/)