nvim-cmp/nvim-cmp-scm-1.rockspec
Marc Jakobi c3f7c54f6e
ci: add release workflow to publish new tags to LuaRocks (#1431)
Co-authored-by: hrsh7th <629908+hrsh7th@users.noreply.github.com>
2023-05-01 23:51:18 +09:00

31 lines
628 B
Lua

local MODREV, SPECREV = 'scm', '-1'
rockspec_format = '3.0'
package = 'nvim-cmp'
version = MODREV .. SPECREV
description = {
summary = 'A completion plugin for neovim',
labels = { 'neovim' },
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',
}
dependencies = {
'lua >= 5.1, < 5.4',
}
source = {
url = 'git://github.com/hrsh7th/nvim-cmp',
}
build = {
type = 'builtin',
copy_directories = {
'autoload',
'plugin',
'doc'
}
}