logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

visrc.lua (335B)


  1. -- load standard vis module, providing parts of the Lua API
  2. require('vis')
  3. vis.events.subscribe(vis.events.INIT, function()
  4. -- Your global configuration options
  5. end)
  6. vis.events.subscribe(vis.events.WIN_OPEN, function(win) -- luacheck: no unused args
  7. -- Your per window configuration options e.g.
  8. -- vis:command('set number')
  9. end)