Update README.md
This commit is contained in:
parent
3c343d4037
commit
a59b9b9023
21
README.md
21
README.md
|
@ -108,12 +108,21 @@ Use the VS Code Grammarly plugin:
|
||||||
```
|
```
|
||||||
## Configure neovim
|
## Configure neovim
|
||||||
|
|
||||||
- remove $HOME/.config/nvim
|
Replace the path to the `grammarly-languageserver` with where you built it:
|
||||||
- link this repo to $HOME/.config/nvim
|
|
||||||
- edit `lua/grammarly.lua` and set the Grammarly LSP cmd (using the one you just built in the `znck/grammarly` dir)
|
```lua
|
||||||
|
require'lspconfig'.grammarly.setup({
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach = on_attach,
|
||||||
|
cmd = { "/home/droscigno/GitHub/grammarly/extension/node_modules/.bin/grammarly-languageserver", "--stdio" },
|
||||||
|
filetypes = { "markdown", "text" },
|
||||||
|
init_options = {
|
||||||
|
clientId = 'client_BaDkMgx4X19X9UxxYRCXZo',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
## Test
|
## Test
|
||||||
- edit a markdown file (this one will show some issues). You should see marks in the far left column indicating grammar and spelling errors. Navigate through the errors with `]d`
|
- edit a markdown file. You should see marks in the far left column indicating grammar and spelling errors. Navigate through the errors with `]d`
|
||||||
- add a link to a non-existent markdown file, for example, `[foo](./foo.md)`. This will show as a warning from Marksman if you add it outside of a code block.
|
|
||||||
[foo](./foo.md)
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue