aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/antlers-language-server/init.lua
blob: c518ed8cc4962bfbf8a78d878c78136522e61d50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local Pkg = require "mason-core.package"
local npm = require "mason-core.managers.npm"
local _ = require "mason-core.functional"

return Pkg.new {
    name = "antlers-language-server",
    desc = _.dedent [[
        Provides rich language features for Statamic's Antlers templating language, including code completions, syntax
        highlighting, and more.
    ]],
    homepage = "https://github.com/Stillat/vscode-antlers-language-server",
    languages = { Pkg.Lang.Antlers },
    categories = { Pkg.Cat.LSP },
    install = npm.packages { "antlers-language-server", bin = { "antlersls" } },
}