From 6fc50cca62dced3b0b1025091bdf779c58e2d4ae Mon Sep 17 00:00:00 2001 From: mcchrish Date: Wed, 27 Oct 2021 09:15:29 +0000 Subject: [PATCH] auto generate docs --- doc/zenbones.txt | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/doc/zenbones.txt b/doc/zenbones.txt index 77d28a9..30dcbb6 100644 --- a/doc/zenbones.txt +++ b/doc/zenbones.txt @@ -1,4 +1,4 @@ -*zenbones.txt* A contrast-focused vim/neovim colorscheme +*zenbones.txt* A collection of contrast-based vim/neovim colorschemes ============================================================================== Table of Contents *zenbones-table-of-contents* @@ -20,15 +20,17 @@ USAGE *zenbones-usage* Just apply the colorscheme as usual: > + set termguicolors + colorscheme zenbones " light colorscheme zenflesh " dark - colorscheme zenwritten " Zero hue and saturation version - colorscheme neobones " https://neovim.io flavor - colorscheme rosebones " Rosé Pine flavor - https://rosepinetheme.com - colorscheme forestbones " Everforest flavor - https://github.com/sainnhe/everforest - colorscheme nordbones " Nord flavor - https://www.nordtheme.com/docs/colors-and-palettes - colorscheme tokyobones " Tokyo Night flavor - https://github.com/enkia/tokyo-night-vscode-theme#color-palette + colorscheme zenwritten " Zero hue and saturation version + colorscheme neobones " https://neovim.io flavor + colorscheme rosebones " Rosé Pine flavor - https://rosepinetheme.com + colorscheme forestbones " Everforest flavor - https://github.com/sainnhe/everforest + colorscheme nordbones " Nord flavor - https://www.nordtheme.com/docs/colors-and-palettes + colorscheme tokyobones " Tokyo Night flavor - https://github.com/enkia/tokyo-night-vscode-theme#color-palette < @@ -43,6 +45,20 @@ 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: + +> + let g:forestbones = #{ solid_line_nr: v:true } +< + + +Or in lua: + +> + vim.g.forestbones = { solid_line_nr = true } +< + + *zenbones-g:zenbones_lightness* g:zenbones_lightness Change background colors lightness. @@ -217,7 +233,7 @@ See also Lush’s documentation CREATE YOUR OWN COLORSCHEME ~ -You can ultimately create your own colorscheme that is based on Zenbones by +You can ultimately create your own colorscheme that is based on zenbones by defining a palette and generating a specs. Best way to demonstrate this is through an example. Let’s make a zenbones-flavored Gruvbox colorscheme called `gruvbones`.