diff options
Diffstat (limited to 'lua/visrc.lua')
| -rw-r--r-- | lua/visrc.lua | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lua/visrc.lua b/lua/visrc.lua index 4c44f6a..1a304b4 100644 --- a/lua/visrc.lua +++ b/lua/visrc.lua @@ -3,15 +3,12 @@ require('vis') require('plugins/filetype') require('plugins/textobject-lexer') -vis.events.start = function() +vis.events.subscribe(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) +end) +vis.events.subscribe(vis.events.WIN_OPEN, function(win) -- Your per window configuration options e.g. -- vis:command('set number') -end +end) |
