mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
26 lines
496 B
Lua
26 lines
496 B
Lua
---@brief
|
|
---
|
|
--- https://rome.tools
|
|
---
|
|
--- Language server for the Rome Frontend Toolchain.
|
|
---
|
|
--- (Unmaintained, use [Biome](https://biomejs.dev/blog/annoucing-biome) instead.)
|
|
---
|
|
--- ```sh
|
|
--- npm install [-g] rome
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'rome', 'lsp-proxy' },
|
|
filetypes = {
|
|
'javascript',
|
|
'javascriptreact',
|
|
'json',
|
|
'typescript',
|
|
'typescript.tsx',
|
|
'typescriptreact',
|
|
},
|
|
root_markers = { 'package.json', 'node_modules', '.git' },
|
|
}
|