about summary refs log tree commit diff stats
path: root/config/vis/visrc.lua
blob: b194feba4cf62d483f6887cac24b849a8d86c1ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- load standard vis module, providing parts of the Lua API
require('vis')

vis.events.subscribe(vis.events.INIT, function()
	-- Your global configuration options
	vis:command('set change-256colors off')
	vis:command('set theme fake256')
end)

vis.events.subscribe(vis.events.WIN_OPEN, function(win)
	-- Your per window configuration options e.g.
	-- vis:command('set number')
end)