aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/kotlin-language-server/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/index/kotlin-language-server/init.lua')
-rw-r--r--lua/mason-registry/index/kotlin-language-server/init.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/lua/mason-registry/index/kotlin-language-server/init.lua b/lua/mason-registry/index/kotlin-language-server/init.lua
deleted file mode 100644
index f5932b96..00000000
--- a/lua/mason-registry/index/kotlin-language-server/init.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-local Pkg = require "mason-core.package"
-local github = require "mason-core.managers.github"
-local path = require "mason-core.path"
-local platform = require "mason-core.platform"
-
-return Pkg.new {
- name = "kotlin-language-server",
- desc = [[Kotlin code completion, linting and more for any editor/IDE using the Language Server Protocol]],
- homepage = "https://github.com/fwcd/kotlin-language-server",
- languages = { Pkg.Lang.Kotlin },
- categories = { Pkg.Cat.LSP },
- ---@async
- ---@param ctx InstallContext
- install = function(ctx)
- github
- .unzip_release_file({
- repo = "fwcd/kotlin-language-server",
- asset_file = "server.zip",
- })
- .with_receipt()
- ctx:link_bin(
- "kotlin-language-server",
- path.concat {
- "server",
- "bin",
- platform.is.win and "kotlin-language-server.bat" or "kotlin-language-server",
- }
- )
- end,
-}