aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/sumneko_lua/init.lua
blob: 943b41f0638ba1670624d4c1e2a304d43ff331d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
local server = require "nvim-lsp-installer.server"
local path = require "nvim-lsp-installer.path"
local platform = require "nvim-lsp-installer.platform"
local Data = require "nvim-lsp-installer.data"
local process = require "nvim-lsp-installer.process"
local github = require "nvim-lsp-installer.core.managers.github"

local coalesce, when = Data.coalesce, Data.when

return function(name, root_dir)
    return server.Server:new {
        name = name,
        root_dir = root_dir,
        languages = { "lua" },
        homepage = "https://github.com/sumneko/lua-language-server",
        async = true,
        installer = function()
            github.unzip_release_file({
                repo = "sumneko/vscode-lua",
                asset_file = function(version)
                    local target = coalesce(
                        when(
                            platform.is_mac,
                            coalesce(
                                when(platform.arch == "x64", "vscode-lua-%s-darwin-x64.vsix"),
                                when(platform.arch == "arm64", "vscode-lua-%s-darwin-arm64.vsix")
                            )
                        ),
                        when(
                            platform.is_linux,
                            coalesce(
                                when(platform.arch == "x64", "vscode-lua-%s-linux-x64.vsix"),
                                when(platform.arch == "arm64", "vscode-lua-%s-linux-arm64.vsix")
                            )
                        ),
                        when(
                            platform.is_win,
                            coalesce(
                                when(platform.arch == "x64", "vscode-lua-%s-win32-x64.vsix"),
                                when(platform.arch == "x86", "vscode-lua-%s-win32-ia32.vsix")
                            )
                        )
                    )

                    return target and target:format(version)
                end,
            }).with_receipt()
        end,
        default_options = {
            cmd_env = {
                PATH = process.extend_path {
                    path.concat { root_dir, "extension", "server", "bin" },
                },
            },
        },
    }
end