blob: 88a412e9abe8004165d97bcc105410d3e8eaa040 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--[[
~/.config/vis/visrc.lua
2018-09-05
--]]
-- load standard vis module, providing parts of the Lua API
require('vis')
vis.events.subscribe(vis.events.INIT, function()
-- Your global configuration options
vis:command('set theme base16-solarized-light')
end)
vis.events.subscribe(vis.events.WIN_OPEN, function(win)
-- Your per window configuration options e.g.
-- vis:command('set number')
end)
|