Update 'README.md'

main
nils 2 years ago
parent dce35d7935
commit 80568b8c52

@ -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/)

Loading…
Cancel
Save