blob: 817821c33157fad9170441c60ff52c065f426420 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
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 = 'git://github.com/neovim/nvim-lspconfig',
}
build = {
type = 'builtin',
copy_directories = {
'doc'
}
}
|