nvim-cmp/nvim-cmp-scm-1.rockspec

32 lines
628 B
Text
Raw Normal View History

local MODREV, SPECREV = 'scm', '-1'
rockspec_format = '3.0'
package = 'nvim-cmp'
2022-09-06 05:46:57 +02:00
version = MODREV .. SPECREV
description = {
summary = 'A completion plugin for neovim',
labels = { 'neovim' },
2022-09-06 05:46:57 +02:00
detailed = [[
A completion engine plugin for neovim written in Lua. Completion sources are installed from external repositories and "sourced".
]],
homepage = 'https://github.com/hrsh7th/nvim-cmp',
license = 'MIT',
2022-09-06 05:46:57 +02:00
}
dependencies = {
'lua >= 5.1, < 5.4',
2022-09-06 05:46:57 +02:00
}
source = {
url = 'git://github.com/hrsh7th/nvim-cmp',
2022-09-06 05:46:57 +02:00
}
build = {
type = 'builtin',
copy_directories = {
'autoload',
'plugin',
'doc'
}
2022-09-06 05:46:57 +02:00
}