-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbase.nvim-scm-1.rockspec
More file actions
31 lines (25 loc) · 720 Bytes
/
base.nvim-scm-1.rockspec
File metadata and controls
31 lines (25 loc) · 720 Bytes
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
---@diagnostic disable: lowercase-global
local _MODREV, _SPECREV = "scm", "-1"
rockspec_format = "3.0"
version = _MODREV .. _SPECREV
local user = "S1M0N38"
package = "base.nvim"
description = {
summary = "Modern template for Neovim plugin development",
detailed = [[
base.nvim is a simple template for Neovim plugin development that provides
best practices, testing setup, type definitions, and automated workflows.
]],
labels = { "neovim", "template", "plugin", "lua", "testing", "mini-test" },
homepage = "https://github.com/" .. user .. "/" .. package,
license = "MIT",
}
dependencies = {
"lua >= 5.1",
}
source = {
url = "git://github.com/" .. user .. "/" .. package,
}
build = {
type = "builtin",
}