Files
eat-it/eatit-cfg.lua
Squibid cea46259ba make the plugin definition more verbose, and less strict.
stop script from cloning if there are no new commits.
make the code a tiny bit cleaner.

bit of a kitchen sink :(
2023-07-02 20:56:08 -04:00

24 lines
609 B
Lua

-- NOTE: The variables in this file need to be global in order to be read
-- after being called with dofile()
plugins = { -- the plugins you want to load
-- link to repo file dest dir
{ 'https://git.squi.bid/eat-it',
file = 'eatit.lua',
dir = 'scripts',
},
}
-- options for eat it
opts = {
logging = { -- options for logging
log = true,
logdate = '[%H:%M:%S]:',
logfile = '~~/eatit.log',
},
dl = { -- options for dealing with the git repos
dir = '/tmp/mpv-eatit',
powerwash = false, -- if true the tmp dir gets deleted after mpv closes
}
}