aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/rome.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/rome.lua')
-rw-r--r--lua/lspconfig/rome.lua36
1 files changed, 0 insertions, 36 deletions
diff --git a/lua/lspconfig/rome.lua b/lua/lspconfig/rome.lua
deleted file mode 100644
index 242fa2c2..00000000
--- a/lua/lspconfig/rome.lua
+++ /dev/null
@@ -1,36 +0,0 @@
-local configs = require 'lspconfig/configs'
-local util = require 'lspconfig/util'
-
-configs.rome = {
- default_config = {
- cmd = { 'rome', 'lsp' },
- filetypes = {
- 'javascript',
- 'javascriptreact',
- 'json',
- 'typescript',
- 'typescript.tsx',
- 'typescriptreact',
- },
- root_dir = function(fname)
- return util.find_package_json_ancestor(fname)
- or util.find_node_modules_ancestor(fname)
- or util.find_git_ancestor(fname)
- end,
- single_file_support = true,
- },
- docs = {
- description = [[
-https://rome.tools
-
-Language server for the Rome Frontend Toolchain.
-
-```sh
-npm install [-g] rome
-```
-]],
- default_config = {
- root_dir = [[root_pattern('package.json', 'node_modules', '.git') or dirname]],
- },
- },
-}