aboutsummaryrefslogtreecommitdiffstats
path: root/eatit-cfg.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--eatit-cfg.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/eatit-cfg.lua b/eatit-cfg.lua
index 7d3eb76..dcdc95e 100644
--- a/eatit-cfg.lua
+++ b/eatit-cfg.lua
@@ -18,10 +18,11 @@ GNU General Public License for more details.
-- after being called with dofile()
plugins = { -- the plugins you want to load
- { 'https://git.squi.bid/eat-it',
- file = 'eatit.lua',
- dir = 'scripts',
- cfg = function()
+ { 'https://git.squi.bid/eat-it', -- required, specifies the git repo
+ file = 'eatit.lua', -- required, specifies the desired file
+ dir = 'scripts', -- optional, sets the dest dir
+ branch = 'master', -- optional, sets the desired branch
+ cfg = function() -- optional, runs code on mpv startup
print('this is an example')
end
},