dotfiles/.config/vis/visrc.lua

14 lines
387 B
Lua

-- load standard vis module, providing parts of the Lua API
require('vis')
require("plugins/vis-commentary/vis-commentary")
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')
vis:command('set shell /bin/sh')
end)