forked from Olical/nfnl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnfnl-dev-1.rockspec
36 lines (36 loc) · 1.26 KB
/
nfnl-dev-1.rockspec
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
32
33
34
35
36
package = "nfnl"
version = "dev-1"
source = {
url = "git+ssh://[email protected]/k13labs/nfnl.git"
}
description = {
summary = "Enhance your [Neovim][neovim] experience through [Fennel][fennel] with zero overhead.",
detailed = [[
Enhance your [Neovim][neovim] experience through [Fennel][fennel] with zero
overhead. Write Fennel, run Lua, nfnl will not load unless you're actively
modifying your Neovim configuration or plugin source code
([nfnl-plugin-example][nfnl-plugin-example]).]],
homepage = "*** please enter a project homepage ***",
license = "*** please specify a license ***"
}
build = {
type = "builtin",
modules = {
["nfnl.api"] = "lua/nfnl/api.lua",
["nfnl.autoload"] = "lua/nfnl/autoload.lua",
["nfnl.callback"] = "lua/nfnl/callback.lua",
["nfnl.compile"] = "lua/nfnl/compile.lua",
["nfnl.config"] = "lua/nfnl/config.lua",
["nfnl.core"] = "lua/nfnl/core.lua",
["nfnl.fennel"] = "lua/nfnl/fennel.lua",
["nfnl.fs"] = "lua/nfnl/fs.lua",
["nfnl.init"] = "lua/nfnl/init.lua",
["nfnl.module"] = "lua/nfnl/module.lua",
["nfnl.notify"] = "lua/nfnl/notify.lua",
["nfnl.nvim"] = "lua/nfnl/nvim.lua",
["nfnl.string"] = "lua/nfnl/string.lua"
},
copy_directories = {
"docs"
}
}