# vis-minimal-theme A minimal black and white theme for [vis](https://github.com/martanne/vis) in both dark and light versions: - minimal-dark minimal-dark - minimal-light minimal-light We only uses 3 shades of dark and 3 shades of light per theme. ## Install Install manually or using [vis-plug](https://github.com/erf/vis-plug) Example `visrc.lua`: ```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) ```