From 80568b8c527a18dc8500dabb369186a9aacc0093 Mon Sep 17 00:00:00 2001 From: nils Date: Tue, 15 Nov 2022 14:07:53 +0100 Subject: [PATCH] Update 'README.md' --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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/)