Skip to content

Commit

Permalink
feat: add antlers-language-server
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman committed Feb 12, 2023
1 parent 5c3cf2f commit 00d3353
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions lua/mason-registry/antlers-language-server/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,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" } },
}

0 comments on commit 00d3353

Please sign in to comment.