mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
18 lines
346 B
Lua
18 lines
346 B
Lua
---@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' },
|
|
}
|