10 lines
407 B
Lua
10 lines
407 B
Lua
|
require('drop').setup
|
||
|
{
|
||
|
---@type DropTheme|string
|
||
|
theme = "leaves", -- can be one of rhe default themes, or a custom theme
|
||
|
max = 15, -- maximum number of drops on the screen
|
||
|
interval = 100, -- every 150ms we update the drops
|
||
|
screensaver = 1000 * 60 * 1, -- show after 5 minutes. Set to false, to disable
|
||
|
filetypes = { "veil" }, -- will enable/disable automatically for the following filetypes
|
||
|
}
|