diff options
| author | William Boman <william@redwill.se> | 2022-06-01 16:40:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-01 07:40:57 -0700 |
| commit | 7a73b8807afee2f6ee4fad226b17da7d4a89511e (patch) | |
| tree | 84f721ae315b03a2163ec0052b133381a45540ca /lua | |
| parent | fix(docs): update example keybindings documentation (#1899) (diff) | |
| download | nvim-lspconfig-7a73b8807afee2f6ee4fad226b17da7d4a89511e.tar nvim-lspconfig-7a73b8807afee2f6ee4fad226b17da7d4a89511e.tar.gz nvim-lspconfig-7a73b8807afee2f6ee4fad226b17da7d4a89511e.tar.bz2 nvim-lspconfig-7a73b8807afee2f6ee4fad226b17da7d4a89511e.tar.lz nvim-lspconfig-7a73b8807afee2f6ee4fad226b17da7d4a89511e.tar.xz nvim-lspconfig-7a73b8807afee2f6ee4fad226b17da7d4a89511e.tar.zst nvim-lspconfig-7a73b8807afee2f6ee4fad226b17da7d4a89511e.zip | |
refactor(grammarly): use new, official, npm package (#1924)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/grammarly.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/lspconfig/server_configurations/grammarly.lua b/lua/lspconfig/server_configurations/grammarly.lua index 675169da..e8818788 100644 --- a/lua/lspconfig/server_configurations/grammarly.lua +++ b/lua/lspconfig/server_configurations/grammarly.lua @@ -1,6 +1,6 @@ local util = require 'lspconfig.util' -local bin_name = 'unofficial-grammarly-language-server' +local bin_name = 'grammarly-languageserver' local cmd = { bin_name, '--stdio' } if vim.fn.has 'win32' == 1 then @@ -21,12 +21,12 @@ return { }, docs = { description = [[ -https://github.com/emacs-grammarly/unofficial-grammarly-language-server +https://github.com/znck/grammarly -`unofficial-grammarly-language-server` can be installed via `npm`: +`grammarly-languageserver` can be installed via `npm`: ```sh -npm i -g @emacs-grammarly/unofficial-grammarly-language-server +npm i -g grammarly-languageserver ``` WARNING: Since this language server uses Grammarly's API, any document you open with it running is shared with them. Please evaluate their [privacy policy](https://www.grammarly.com/privacy-policy) before using this. |
