diff options
Diffstat (limited to 'lua/nvim-lsp-installer/servers/sumneko_lua/init.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/sumneko_lua/init.lua | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/lua/nvim-lsp-installer/servers/sumneko_lua/init.lua b/lua/nvim-lsp-installer/servers/sumneko_lua/init.lua deleted file mode 100644 index 71a0f655..00000000 --- a/lua/nvim-lsp-installer/servers/sumneko_lua/init.lua +++ /dev/null @@ -1,56 +0,0 @@ -local server = require "nvim-lsp-installer.server" -local path = require "nvim-lsp-installer.core.path" -local platform = require "nvim-lsp-installer.core.platform" -local functional = require "nvim-lsp-installer.core.functional" -local process = require "nvim-lsp-installer.core.process" -local github = require "nvim-lsp-installer.core.managers.github" - -local coalesce, when = functional.coalesce, functional.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", - 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 |
