aboutsummaryrefslogtreecommitdiffstats
path: root/modules/lssi/LSSI.md
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2024-07-27 09:26:54 -0400
committerSquibid <me@zacharyscheiman.com>2024-07-27 09:26:54 -0400
commit16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe (patch)
tree6edc384d7e72662dc1e58f0722353ce841f891cc /modules/lssi/LSSI.md
parent878f0faaf7f472b96ab5a7f0e4db266111b2d3ce (diff)
downloadeat-it-16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe.tar.gz
eat-it-16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe.tar.bz2
eat-it-16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe.zip
complete refactor see README for more infov3.0
Diffstat (limited to 'modules/lssi/LSSI.md')
-rw-r--r--modules/lssi/LSSI.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/lssi/LSSI.md b/modules/lssi/LSSI.md
deleted file mode 100644
index 5bcd65d..0000000
--- a/modules/lssi/LSSI.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# 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.