lexer: add systemd unit file LPeg lexer
[vis.git] / visrc.lua
blob7dae1fe4a1b6a772ffe4139b1ace9c8ed8f90724
1 -- load standard vis module, providing parts of the Lua API
2 require('vis')
4 vis.events.win_open = function(win)
5 -- enable syntax highlighting for known file types
6 vis.filetype_detect(win)
8 -- Your local configuration options e.g.
9 -- vis:command('set number')
10 -- vis:command('map! normal j gj')
11 end