diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-22 12:15:12 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-22 12:15:12 +0000 |
| commit | 553c4e0e667167640c5398573f6f3a488ff8047a (patch) | |
| tree | 993741a0c53c281892b49a5c0c1bb389a4b33c74 | |
| parent | feat: add typos-lsp server (#2886) (diff) | |
| download | nvim-lspconfig-553c4e0e667167640c5398573f6f3a488ff8047a.tar nvim-lspconfig-553c4e0e667167640c5398573f6f3a488ff8047a.tar.gz nvim-lspconfig-553c4e0e667167640c5398573f6f3a488ff8047a.tar.bz2 nvim-lspconfig-553c4e0e667167640c5398573f6f3a488ff8047a.tar.lz nvim-lspconfig-553c4e0e667167640c5398573f6f3a488ff8047a.tar.xz nvim-lspconfig-553c4e0e667167640c5398573f6f3a488ff8047a.tar.zst nvim-lspconfig-553c4e0e667167640c5398573f6f3a488ff8047a.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 41 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 41 |
2 files changed, 82 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 1a4c443c..a6075836 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -251,6 +251,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [ttags](#ttags) - [turtle_ls](#turtle_ls) - [typeprof](#typeprof) +- [typos_lsp](#typos_lsp) - [typst_lsp](#typst_lsp) - [uiua](#uiua) - [unison](#unison) @@ -10805,6 +10806,46 @@ require'lspconfig'.typeprof.setup{} ``` +## typos_lsp + +https://github.com/crate-ci/typos +https://github.com/tekumara/typos-vscode + +A Language Server Protocol implementation for Typos, a low false-positive +source code spell checker, written in Rust. Download it from the releases page +on GitHub: https://github.com/tekumara/typos-vscode/releases + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.typos_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "typos-lsp" } + ``` + - `filetypes` : + ```lua + { "*" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `settings` : + ```lua + {} + ``` + - `single_file_support` : + ```lua + true + ``` + + ## typst_lsp https://github.com/nvarner/typst-lsp diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 1a4c443c..a6075836 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -251,6 +251,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [ttags](#ttags) - [turtle_ls](#turtle_ls) - [typeprof](#typeprof) +- [typos_lsp](#typos_lsp) - [typst_lsp](#typst_lsp) - [uiua](#uiua) - [unison](#unison) @@ -10805,6 +10806,46 @@ require'lspconfig'.typeprof.setup{} ``` +## typos_lsp + +https://github.com/crate-ci/typos +https://github.com/tekumara/typos-vscode + +A Language Server Protocol implementation for Typos, a low false-positive +source code spell checker, written in Rust. Download it from the releases page +on GitHub: https://github.com/tekumara/typos-vscode/releases + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.typos_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "typos-lsp" } + ``` + - `filetypes` : + ```lua + { "*" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `settings` : + ```lua + {} + ``` + - `single_file_support` : + ```lua + true + ``` + + ## typst_lsp https://github.com/nvarner/typst-lsp |
