blob: 05c3f1c4500e069b23756369bf3aa6130d4ded0f (
plain)
1
2
3
4
5
6
7
8
9
10
|
require('vis')
vis.events.subscribe(vis.events.INIT, function()
-- Global configuration options
end)
vis.events.subscribe(vis.events.WIN_OPEN, function(win)
-- Per window configuration options
vis:command('set autoindent on');
end)
|