blob: 1fb9755dbcd17c1f2c5eaf6c982670da4b637f4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---@brief
---
--- 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
--- ```
---@type vim.lsp.Config
return {
cmd = { 'nxls', '--stdio' },
filetypes = { 'json', 'jsonc' },
root_markers = { 'nx.json', '.git' },
}
|