blob: 95aa1c0ecae89a627bc8145759c2944f7908e6bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-- load standard vis module, providing parts of the Lua API
require('vis')
vis.events.start = function()
-- Your global configuration options e.g.
-- vis:command('map! normal j gj')
end
vis.events.win_open = function(win)
-- enable syntax highlighting for known file types
vis.filetype_detect(win)
-- Your per window configuration options e.g.
-- vis:command('set number')
end
|