diff options
Diffstat (limited to 'lua/nvim-lsp-installer/servers/vls/init.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/vls/init.lua | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/lua/nvim-lsp-installer/servers/vls/init.lua b/lua/nvim-lsp-installer/servers/vls/init.lua deleted file mode 100644 index c531d2f6..00000000 --- a/lua/nvim-lsp-installer/servers/vls/init.lua +++ /dev/null @@ -1,42 +0,0 @@ -local server = require "nvim-lsp-installer.server" -local github = require "nvim-lsp-installer.core.managers.github" -local github_client = require "nvim-lsp-installer.core.managers.github.client" -local std = require "nvim-lsp-installer.core.managers.std" -local functional = require "nvim-lsp-installer.core.functional" -local platform = require "nvim-lsp-installer.core.platform" -local Optional = require "nvim-lsp-installer.core.optional" -local process = require "nvim-lsp-installer.core.process" - -return function(name, root_dir) - return server.Server:new { - name = name, - root_dir = root_dir, - homepage = "https://github.com/vlang/vls", - languages = { "vlang", "V" }, - ---@async - installer = function() - local repo = "vlang/vls" - - ---@type GitHubRelease - local latest_dev_build = - github_client.fetch_latest_release(repo, { include_prerelease = true }):get_or_throw() - - github.download_release_file({ - version = Optional.of(latest_dev_build.tag_name), - repo = repo, - out_file = platform.is.win and "vls.exe" or "vls", - asset_file = functional.coalesce( - functional.when(platform.is.linux_x64, "vls_linux_x64"), - functional.when(platform.is.mac, "vls_macos_x64"), - functional.when(platform.is.win_x64, "vls_windows_x64.exe") - ), - }).with_receipt() - std.chmod("+x", { "vls" }) - end, - default_options = { - cmd_env = { - PATH = process.extend_path { root_dir }, - }, - }, - } -end |
