lexers/pkgbuild: match functions with parentheses
[vis.git] / visrc.lua
blob95aa1c0ecae89a627bc8145759c2944f7908e6bf
1 -- load standard vis module, providing parts of the Lua API
2 require('vis')
4 vis.events.start = function()
5 -- Your global configuration options e.g.
6 -- vis:command('map! normal j gj')
7 end
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')
15 end