aboutsummaryrefslogtreecommitdiffstats
path: root/modules/README.md
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-07-09 21:40:42 -0400
committerSquibid <me@zacharyscheiman.com>2023-07-09 21:40:42 -0400
commit663110af1ee4073b55b1893050a1c36989ba56fc (patch)
treed07932a91175798b320408432931fe1577eadd19 /modules/README.md
parent7f409007184d0d3ea5ae880f708b6284f99844d6 (diff)
downloadeat-it-663110af1ee4073b55b1893050a1c36989ba56fc.tar.gz
eat-it-663110af1ee4073b55b1893050a1c36989ba56fc.tar.bz2
eat-it-663110af1ee4073b55b1893050a1c36989ba56fc.zip
add modules directory and lssi, the first module!
Diffstat (limited to '')
-rw-r--r--modules/README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/README.md b/modules/README.md
new file mode 100644
index 0000000..614a9b2
--- /dev/null
+++ b/modules/README.md
@@ -0,0 +1,28 @@
+# Modules
+Modules are extentions to the EatIt plugin manager that aren't necessary for
+running it. Every module will be in it's own sub directory in order to keep
+documentation relative to the individual modules.
+
+## List of modules
+- `lssi.lua` Lua Script Script Injector for modifing files post install
+
+## Installing
+Installing a module can be done through EatIt like so:
+```lua
+plugins = { -- the plugins you want to load
+ { 'https://git.squi.bid/eat-it',
+ file = 'modules/moddir/module.lua',
+ dir = 'scripts',
+ },
+}
+```
+
+## For Devs
+Please add a table in the global scope called 'mod' as this may be used in the
+future. It should look like this:
+```lua
+mod = {
+ version = 'version',
+ author = 'autor name',
+}
+```