diff options
Diffstat (limited to 'lua/lspconfig/rome.lua')
| -rw-r--r-- | lua/lspconfig/rome.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lua/lspconfig/rome.lua b/lua/lspconfig/rome.lua new file mode 100644 index 00000000..a8d813f2 --- /dev/null +++ b/lua/lspconfig/rome.lua @@ -0,0 +1,37 @@ +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) or + util.path.dirname(fname) + end + }, + docs = { + description = [[ +https://romefrontend.dev + +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]] + } + } +} + |
