1

Regenerate nvim config

This commit is contained in:
2024-06-02 03:29:20 +02:00
parent 75eea0c030
commit ef2e28883d
5576 changed files with 604886 additions and 503 deletions

View File

@ -0,0 +1,35 @@
local _MODREV, _SPECREV = 'scm', '-1'
rockspec_format = "3.0"
package = 'plenary.nvim'
version = _MODREV .. _SPECREV
description = {
summary = 'lua functions you don\'t want to write ',
labels = { "neovim" },
detailed = [[
plenary: full; complete; entire; absolute; unqualified. All the lua functions I don't want to write twice.
]],
homepage = 'http://github.com/nvim-lua/plenary.nvim',
license = 'MIT/X11',
}
dependencies = {
'lua >= 5.1, < 5.4',
'luassert'
}
source = {
url = 'git://github.com/nvim-lua/plenary.nvim',
}
build = {
type = 'builtin',
copy_directories = {
'data',
'plugin'
}
}
test = {
type = "command",
command = "make test"
}