From ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de Mon Sep 17 00:00:00 2001 From: Hirokazu Hata Date: Sun, 6 Sep 2020 17:49:21 +0900 Subject: Rename nvim_lsp to lspconfig --- lua/lspconfig/rome.lua | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 lua/lspconfig/rome.lua (limited to 'lua/lspconfig/rome.lua') 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]] + } + } +} + -- cgit v1.2.3-70-g09d2