allow dictionary global config

This commit is contained in:
Michael Chris Lopez
2021-10-27 16:49:45 +08:00
parent b51ca3f063
commit 681bcff0db
2 changed files with 13 additions and 0 deletions

View File

@@ -31,6 +31,15 @@ Configuration is only available for neovim.
the flavor name e.g. `g:rosebones_italic_comments`. Just remember: `zenbones_`
are for the `light` background and `zenflesh_` is for the dark.
Another way to set configuration is to assign a dictionary to the prefix:
```vim
let g:forestbones = #{ solid_line_nr: v:true }
```
Or in lua:
```lua
vim.g.forestbones = { solid_line_nr = true }
```
#### g:zenbones_lightness
Change background colors lightness. Options: `'bright'`, `'dim'`.