diff options
| -rw-r--r-- | doc/configs.md | 22 | ||||
| -rw-r--r-- | doc/configs.txt | 16 |
2 files changed, 38 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 329282d2..5aca584c 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -56,6 +56,7 @@ Nvim by running `:help lspconfig-all`. - [coq_lsp](#coq_lsp) - [crystalline](#crystalline) - [csharp_ls](#csharp_ls) +- [cspell_ls](#cspell_ls) - [css_variables](#css_variables) - [cssls](#cssls) - [cssmodules_ls](#cssmodules_ls) @@ -2298,6 +2299,27 @@ Default config: --- +## cspell_ls + +[cspell language server](https://github.com/vlabo/cspell-lsp) + +Snippet to enable the language server: +```lua +vim.lsp.enable('cspell_ls') +``` + +Default config: +- `cmd` : + ```lua + { "cspell-lsp", "--stdio" } + ``` +- `root_markers` : + ```lua + { ".git", "cspell.json", ".cspell.json", "cspell.json", ".cSpell.json", "cSpell.json", "cspell.config.js", "cspell.config.cjs", "cspell.config.json", "cspell.config.yaml", "cspell.config.yml", "cspell.yaml", "cspell.yml" } + ``` + +--- + ## css_variables https://github.com/vunguyentuan/vscode-css-variables/tree/master/packages/css-variables-language-server diff --git a/doc/configs.txt b/doc/configs.txt index 71883dfc..2f73450c 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1485,6 +1485,22 @@ Default config: < ------------------------------------------------------------------------------ +cspell_ls + +[cspell language server](https://github.com/vlabo/cspell-lsp) + +Snippet to enable the language server: >lua + vim.lsp.enable('cspell_ls') + + +Default config: +- cmd: >lua + { "cspell-lsp", "--stdio" } +- root_markers: >lua + { ".git", "cspell.json", ".cspell.json", "cspell.json", ".cSpell.json", "cSpell.json", "cspell.config.js", "cspell.config.cjs", "cspell.config.json", "cspell.config.yaml", "cspell.config.yml", "cspell.yaml", "cspell.yml" } +< + +------------------------------------------------------------------------------ css_variables https://github.com/vunguyentuan/vscode-css-variables/tree/master/packages/css-variables-language-server |
