blob: c77484063c9d93bd6035ea704e063d627af05a8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local server = require "nvim-lsp-installer.server"
local pip3 = require "nvim-lsp-installer.core.managers.pip3"
return function(name, root_dir)
return server.Server:new {
name = name,
root_dir = root_dir,
installer = pip3.packages { "robotframework-lsp" },
languages = { "robot" },
homepage = "https://github.com/robocorp/robotframework-lsp",
async = true,
default_options = {
cmd_env = pip3.env(root_dir),
},
}
end
|