diff options
| author | github-actions <github-actions@github.com> | 2022-08-22 04:50:07 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2022-08-22 04:50:07 +0000 |
| commit | 70af1bf414d7f9926fc883a008246db8a544f69c (patch) | |
| tree | 59df53dd8457b084acd9cbf79d9566c7c0b40be5 | |
| parent | feat: add nxls support (#2062) (diff) | |
| download | nvim-lspconfig-70af1bf414d7f9926fc883a008246db8a544f69c.tar nvim-lspconfig-70af1bf414d7f9926fc883a008246db8a544f69c.tar.gz nvim-lspconfig-70af1bf414d7f9926fc883a008246db8a544f69c.tar.bz2 nvim-lspconfig-70af1bf414d7f9926fc883a008246db8a544f69c.tar.lz nvim-lspconfig-70af1bf414d7f9926fc883a008246db8a544f69c.tar.xz nvim-lspconfig-70af1bf414d7f9926fc883a008246db8a544f69c.tar.zst nvim-lspconfig-70af1bf414d7f9926fc883a008246db8a544f69c.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 35 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 35 |
2 files changed, 70 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 399e4f37..dc4170e7 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [nickel_ls](#nickel_ls) - [nil_ls](#nil_ls) - [nimls](#nimls) +- [nxls](#nxls) - [ocamlls](#ocamlls) - [ocamllsp](#ocamllsp) - [ols](#ols) @@ -3792,6 +3793,40 @@ require'lspconfig'.nimls.setup{} ``` +## nxls + +https://github.com/nrwl/nx-console/tree/master/apps/nxls + +nxls, a language server for Nx Workspaces + +`nxls` can be installed via `npm`: +```sh +npm i -g nxls +``` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.nxls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "nxls", "--stdio" } + ``` + - `filetypes` : + ```lua + { "json", "jsonc" } + ``` + - `root_dir` : + ```lua + util.root_pattern + ``` + + ## ocamlls https://github.com/ocaml-lsp/ocaml-language-server diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 399e4f37..dc4170e7 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [nickel_ls](#nickel_ls) - [nil_ls](#nil_ls) - [nimls](#nimls) +- [nxls](#nxls) - [ocamlls](#ocamlls) - [ocamllsp](#ocamllsp) - [ols](#ols) @@ -3792,6 +3793,40 @@ require'lspconfig'.nimls.setup{} ``` +## nxls + +https://github.com/nrwl/nx-console/tree/master/apps/nxls + +nxls, a language server for Nx Workspaces + +`nxls` can be installed via `npm`: +```sh +npm i -g nxls +``` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.nxls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "nxls", "--stdio" } + ``` + - `filetypes` : + ```lua + { "json", "jsonc" } + ``` + - `root_dir` : + ```lua + util.root_pattern + ``` + + ## ocamlls https://github.com/ocaml-lsp/ocaml-language-server |
