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