blob: 7f1acc6d957e9e5b050ffb5745d4c1393c8a5900 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
-- load standard vis module, providing parts of the Lua API
require('vis')
vis.events.subscribe(vis.events.INIT, function()
-- Your global configuration options
end)
vis.events.subscribe(vis.events.WIN_OPEN, function(win) -- luacheck: no unused args
-- Your per window configuration options e.g.
-- vis:command('set number')
end)
|