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
|
local server = require "nvim-lsp-installer.server"
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,
homepage = "https://github.com/mickael-menu/zk",
languages = { "markdown" },
async = true,
installer = function()
local repo = "mickael-menu/zk"
platform.when {
mac = function()
github.unzip_release_file({
repo = repo,
asset_file = coalesce(
when(platform.arch == "arm64", function(version)
return ("zk-%s-macos-arm64.zip"):format(version)
end),
when(platform.arch == "x64", function(version)
return ("zk-%s-macos-x86_64.zip"):format(version)
end)
),
}):with_receipt()
end,
linux = function()
github.untargz_release_file({
repo = repo,
asset_file = coalesce(
when(platform.arch == "arm64", function(version)
return ("zk-%s-linux-arm64.tar.gz"):format(version)
end),
when(platform.arch == "x64", function(version)
return ("zk-%s-linux-amd64.tar.gz"):format(version)
end),
when(platform.arch == "x86", function(version)
return ("zk-%s-linux-i386.tar.gz"):format(version)
end)
),
}).with_receipt()
end,
}
end,
default_options = {
cmd_env = {
PATH = process.extend_path { root_dir },
},
},
}
end
|