add modules directory and lssi, the first module!

This commit is contained in:
2023-07-09 21:40:42 -04:00
parent 7f40900718
commit 663110af1e
3 changed files with 177 additions and 0 deletions

16
modules/lssi/LSSI.md Normal file
View File

@ -0,0 +1,16 @@
# Using lssi
Any plugin can be modified by lssi by doing the following in the eatit-cfg.lua:
```lua
plugins = { -- the plugins you want to load
{ 'https://git.squi.bid/eat-it',
file = 'eatit.lua',
dir = 'scripts',
lssi = {
-- code line
{ 'print("hello world")', 'G' },
}
},
}
```
The line option can be 'g' for top of file, 'G' for bottom of file, or any
number in between.