aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/vetur-vls/init.lua
blob: 5bb0deff93b8918c5e31db9544c6a39f9d915cd1 (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 = "vetur-vls",
    desc = [[VLS (Vue Language Server) is a language server implementation compatible with Language Server Protocol.]],
    homepage = "https://github.com/vuejs/vetur",
    languages = { Pkg.Lang.Vue },
    categories = { Pkg.Cat.LSP },
    install = npm.packages { "vls", bin = { "vls" } },
}