diff --git a/README.md b/README.md index f8d9e18..c724286 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,20 @@ highlight. #### g:zenbones_dim_noncurrent_window +## Advanced Usage + +Zenbones is pretty extensible thanks to +[Lush](https://github.com/rktjmp/lush.nvim). You can easily retrieve the colors +in lua: + +```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 @@ -120,20 +134,6 @@ currently supported. - [CoC](https://github.com/neoclide/coc.nvim) - [Neogit](https://github.com/TimUntersberger/neogit) -## Advanced Usage - -Zenbones is pretty extensible thanks to -[Lush](https://github.com/rktjmp/lush.nvim). You can easily retrieve the colors -in lua: - -```lua -local theme = require "zenbones" -local colors = require "zenbones.colors" - -print(theme.StatusLine.bg.hex) -print(sand.darken(20).hex) -``` - See also [Lush's documentation](https://github.com/rktjmp/lush.nvim#advanced-usage) for the complete options.