dotfiles/vis/tomorrownight/visrc.lua

16 lines
471 B
Lua

-- load standard vis module, providing parts of the Lua API
require('vis')
require('plugins/vis-title')
require('plugins/vis-shebang')
vis.events.subscribe(vis.events.INIT, function()
-- Your global configuration options
end)
vis.events.subscribe(vis.events.WIN_OPEN, function(win) -- luacheck: no unused args
-- Your per window configuration options e.g.
vis:command('set theme base16-tomorrow-night')
vis:command('set number')
vis:command('set cursorline')
end)