From d20ba598b33debd069bc5646182f21e6fd7a127f Mon Sep 17 00:00:00 2001 From: Thomas Ulmer Date: Fri, 19 Jun 2026 11:13:29 -0700 Subject: vis setup --- config/vis/visrc.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config/vis/visrc.lua (limited to 'config') diff --git a/config/vis/visrc.lua b/config/vis/visrc.lua new file mode 100644 index 0000000..50b12bd --- /dev/null +++ b/config/vis/visrc.lua @@ -0,0 +1,13 @@ +-- 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) -- luacheck: no unused args + -- Your per window configuration options e.g. + vis:command('set nu') + vis:command('set tw 4') + vis:command('set et') +end) -- cgit v1.2.3