diff options
Diffstat (limited to 'visrc.lua')
| -rw-r--r-- | visrc.lua | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,11 +1,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 local configuration options e.g. + -- Your per window configuration options e.g. -- vis:command('set number') - -- vis:command('map! normal j gj') end |
