blob: 80a06e5a94be5c55b0613e266a782007608e8c52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# 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
<img width="400" alt="minimal-dark" src="https://user-images.githubusercontent.com/1562523/149605406-8e859f34-9f27-4a7f-a08e-76b64c9a71f4.png">
- minimal-light
<img width="400" alt="minimal-light" src="https://user-images.githubusercontent.com/1562523/149605422-dd55be44-7969-4096-b16e-9d5c53c63872.png">
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)
```
|