diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-05-30 15:27:35 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-05-30 15:27:35 +0000 |
| commit | 03bc581e05e81d33808b42b2d7e76d70adb3b595 (patch) | |
| tree | 84b62e1646afa53de3f777cc7cd444d8e14b5632 | |
| parent | feat: cspell language server #3877 (diff) | |
| download | nvim-lspconfig-03bc581e05e81d33808b42b2d7e76d70adb3b595.tar nvim-lspconfig-03bc581e05e81d33808b42b2d7e76d70adb3b595.tar.gz nvim-lspconfig-03bc581e05e81d33808b42b2d7e76d70adb3b595.tar.bz2 nvim-lspconfig-03bc581e05e81d33808b42b2d7e76d70adb3b595.tar.lz nvim-lspconfig-03bc581e05e81d33808b42b2d7e76d70adb3b595.tar.xz nvim-lspconfig-03bc581e05e81d33808b42b2d7e76d70adb3b595.tar.zst nvim-lspconfig-03bc581e05e81d33808b42b2d7e76d70adb3b595.zip | |
docs: update configs.md
skip-checks: true
| -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 |
