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