dotfiles/vis/visrc.lua
joachimschmidt557 7ecda7ede1 Add vis
2019-05-18 17:51:33 +02:00

14 lines
420 B
Lua

-- load standard vis module, providing parts of the Lua API
require('vis')
vis.events.subscribe(vis.events.INIT, function()
-- Your global configuration options
end)
vis.events.subscribe(vis.events.WIN_OPEN, function(win)
-- Your per window configuration options e.g.
vis:command('set number on')
vis:command('set cursorline on')
vis:command('set autoindent on')
vis:command('set theme base16-london-tube')
end)