aboutsummaryrefslogtreecommitdiffstats
path: root/eatit-cfg.lua
blob: 5a03b3abef03e2c7e3e95c984b2f532778c8409f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- 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
  }
}