diff options
| author | github-actions <github-actions@github.com> | 2023-06-06 12:45:47 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2023-06-06 12:45:47 +0000 |
| commit | 00d7063cdca8d39eb4e3308277cc21eae7bb44f7 (patch) | |
| tree | adae27ede9f16905c5bf65cc37508a20b38b8e0c | |
| parent | feat: add vale-ls (#2653) (diff) | |
| download | nvim-lspconfig-00d7063cdca8d39eb4e3308277cc21eae7bb44f7.tar nvim-lspconfig-00d7063cdca8d39eb4e3308277cc21eae7bb44f7.tar.gz nvim-lspconfig-00d7063cdca8d39eb4e3308277cc21eae7bb44f7.tar.bz2 nvim-lspconfig-00d7063cdca8d39eb4e3308277cc21eae7bb44f7.tar.lz nvim-lspconfig-00d7063cdca8d39eb4e3308277cc21eae7bb44f7.tar.xz nvim-lspconfig-00d7063cdca8d39eb4e3308277cc21eae7bb44f7.tar.zst nvim-lspconfig-00d7063cdca8d39eb4e3308277cc21eae7bb44f7.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 30 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 30 |
2 files changed, 60 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index a8894855..f524d555 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -223,6 +223,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [unocss](#unocss) - [uvls](#uvls) - [vala_ls](#vala_ls) +- [vale_ls](#vale_ls) - [vdmj](#vdmj) - [verible](#verible) - [veridian](#veridian) @@ -9590,6 +9591,35 @@ require'lspconfig'.vala_ls.setup{} ``` +## vale_ls + +https://github.com/errata-ai/vale-ls + +An implementation of the Language Server Protocol (LSP) for the Vale command-line tool. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.vale_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "vale-ls" } + ``` + - `filetypes` : + ```lua + { "markdown", "text" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## vdmj https://github.com/nickbattle/vdmj diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index a8894855..f524d555 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -223,6 +223,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [unocss](#unocss) - [uvls](#uvls) - [vala_ls](#vala_ls) +- [vale_ls](#vale_ls) - [vdmj](#vdmj) - [verible](#verible) - [veridian](#veridian) @@ -9590,6 +9591,35 @@ require'lspconfig'.vala_ls.setup{} ``` +## vale_ls + +https://github.com/errata-ai/vale-ls + +An implementation of the Language Server Protocol (LSP) for the Vale command-line tool. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.vale_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "vale-ls" } + ``` + - `filetypes` : + ```lua + { "markdown", "text" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## vdmj https://github.com/nickbattle/vdmj |
