cleanup readme

This commit is contained in:
Michael Chris Lopez
2021-10-27 17:44:38 +08:00
parent 0c0e8196fc
commit e9db8a7144

View File

@@ -1,8 +1,8 @@
# Zenbones # Zenbones
**Zenbones** is a vim/neovim colorscheme designed to highlight code **Zenbones** is a vim/neovim colorscheme designed to highlight code using
using contrasts and font variations. Colors are tasked only for other roles such contrasts and font variations. Colors are tasked only for other roles such as
as diagnostics, diffs, search matches. diagnostics, diffs, search matches.
## Usage ## Usage
@@ -34,10 +34,13 @@ the flavor name e.g. `g:rosebones_italic_comments`. Just remember: `zenbones_`
are for the `light` background and `zenflesh_` is for the dark. are for the `light` background and `zenflesh_` is for the dark.
Another way to set configuration is to assign a dictionary to the prefix: Another way to set configuration is to assign a dictionary to the prefix:
```vim ```vim
let g:forestbones = #{ solid_line_nr: v:true } let g:forestbones = #{ solid_line_nr: v:true }
``` ```
Or in lua: Or in lua:
```lua ```lua
vim.g.forestbones = { solid_line_nr = true } vim.g.forestbones = { solid_line_nr = true }
``` ```