# vis-minimal-theme A minimal B&W theme for the [vis](https://github.com/martanne/vis) editor in both dark and light versions: - minimal-dark minimal-dark - minimal-light minimal-light We only use 3 shades of black and 3 shades of white. ## Install Install manually or using `vis-plug`: ```Lua local plug = require('plugins/vis-plug') local conf = { { url = 'erf/vis-minimal-theme', theme = true }, } plug.init(conf, true) vis.events.subscribe(vis.events.INIT, function() --vis:command('set theme vis-minimal-theme/minimal-light') vis:command('set theme vis-minimal-theme/minimal-dark') end) ```