auto generate docs

This commit is contained in:
mcchrish
2021-09-05 00:19:48 +00:00
committed by GitHub Actions
parent 976953b57e
commit d9d90dfeb1

View File

@@ -8,8 +8,8 @@ Table of Contents *zenbones-table-of-contents*
- Installation |zenbones-installation|
- Usage |zenbones-usage|
- Configuration |zenbones-configuration|
- Other plugins support |zenbones-other-plugins-support|
- Advanced Usage |zenbones-advanced-usage|
- Other plugins support |zenbones-other-plugins-support|
- Other implementations |zenbones-other-implementations|
- Inspirations |zenbones-inspirations|
@@ -103,9 +103,22 @@ g:zenbones_solid_vert_split Set to `v:true` to make vertical split
*zenbones-g:zenbones_dim_noncurrent_window*
g:zenbones_dim_noncurrent_window Set to `v:true` to make non-current
window background dimmer than _Normal_.
ADVANCED USAGE *zenbones-advanced-usage*
Zenbones is pretty extensible thanks to Lush
<https://github.com/rktjmp/lush.nvim>. You can easily retrieve the colors in
lua:
>
local theme = require "zenbones"
local colors = require "zenbones.colors"
print(theme.StatusLine.bg.hex)
print(sand.darken(20).hex)
<
Set to `v:true` to make non-current window background dimmer than _Normal_.
OTHER PLUGINS SUPPORT *zenbones-other-plugins-support*
@@ -124,21 +137,6 @@ currently supported.
- Neogit <https://github.com/TimUntersberger/neogit>
ADVANCED USAGE *zenbones-advanced-usage*
Zenbones is pretty extensible thanks to Lush
<https://github.com/rktjmp/lush.nvim>. You can easily retrieve the colors in
lua:
>
local theme = require "zenbones"
local colors = require "zenbones.colors"
print(theme.StatusLine.bg.hex)
print(sand.darken(20).hex)
<
See also Lushs documentation
<https://github.com/rktjmp/lush.nvim#advanced-usage> for the complete options.