1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 20:20:05 +08:00
SpaceVim/bundle/nvim-lspconfig-0.1.4/nvim-lspconfig-scm-1.rockspec
2023-03-29 11:59:27 +08:00

39 lines
909 B
Lua

local _MODREV, _SPECREV = 'scm', '-1'
rockspec_format = "3.0"
package = 'nvim-lspconfig'
version = _MODREV .. _SPECREV
description = {
summary = "A collection of common configurations for Neovim's built-in language server client.",
detailed = [[
This plugin allows for declaratively configuring, launching, and initializing language servers you have installed on your system.
Language server configurations are community-maintained.
]],
homepage = 'https://github.com/neovim/nvim-lspconfig',
license = 'Apache/2.0',
labels = { 'neovim', 'lsp' }
}
dependencies = {
'lua == 5.1',
}
source = {
url = 'https://github.com/neovim/nvim-lspconfig/archive/v' .. _MODREV .. '.zip',
dir = 'nvim-lspconfig-' .. _MODREV,
}
if _MODREV == 'scm' then
source = {
url = 'git://github.com/neovim/nvim-lspconfig',
}
end
build = {
type = 'builtin',
copy_directories = {
'doc'
}
}