aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/rome/init.lua
blob: 986594053eeeb76cc562325a5889186fb0e30573 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local server = require("nvim-lsp-installer.server")
local path = require("nvim-lsp-installer.path")
local npm = require("nvim-lsp-installer.installers.npm")

local root_dir = server.get_server_root_path("rome")

return server.Server:new {
    name = "rome",
    root_dir = root_dir,
    installer = npm.packages { "rome@10.0.7-nightly.2021.7.2" }, -- https://github.com/rome/tools/pull/1409
    default_options = {
        cmd = { path.concat { root_dir, "node_modules", ".bin", "rome" }, "lsp" },
    },
}