blob: 8e69ddfe170cc96a8cd387e4dcaade3b43784b1d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local npm = require "mason-core.managers.npm"
return Pkg.new {
name = "astro-language-server",
desc = [[The Astro language server, its structure is inspired by the Svelte Language Server.]],
homepage = "https://github.com/withastro/language-tools",
languages = { Pkg.Lang.Astro },
categories = { Pkg.Cat.LSP },
install = npm.packages { "@astrojs/language-server", "typescript", bin = { "astro-ls" } },
}
|