doc: cleanup

This commit is contained in:
Michael Chris Lopez
2021-11-07 08:37:59 +08:00
parent 5c8701019b
commit 5610c3f4f7
2 changed files with 14 additions and 20 deletions

View File

@@ -112,9 +112,9 @@ currently supported.
- [WezTerm](extras/wezterm) - [WezTerm](extras/wezterm)
- [Tmux](extras/tmux) - [Tmux](extras/tmux)
It's also possible to generate any color configuration files using a template, It's also possible to generate any color configuration files using shipwright,
[this one for Kitty](lua/zenbones/template/kitty.lua) for example. Please feel [this one for Kitty](lua/zenbones/shipwright/runners/kitty.lua) for example.
free to submit a PR if you want to add some more. Please feel free to submit a PR if you want to add some more.
## Inspirations ## Inspirations

View File

@@ -14,20 +14,18 @@ set background=light " or dark
colorscheme zenbones colorscheme zenbones
colorscheme zenwritten " Zero hue and saturation version " or any from the collection
colorscheme neobones " https://neovim.io flavor colorscheme zenwritten
colorscheme vimbones " https://www.vim.org flavor colorscheme neobones
colorscheme rosebones " Rosé Pine flavor - https://rosepinetheme.com colorscheme vimbones
colorscheme forestbones " Everforest flavor - https://github.com/sainnhe/everforest colorscheme rosebones
colorscheme nordbones " Nord flavor - https://www.nordtheme.com/docs/colors-and-palettes colorscheme forestbones
colorscheme tokyobones " Tokyo Night flavor - https://github.com/enkia/tokyo-night-vscode-theme#color-palette colorscheme nordbones
colorscheme duckbones " Spaceduck flavor - https://pineapplegiant.github.io/spaceduck colorscheme tokyobones
colorscheme zenburned " Zenburn flavor - https://kippura.org/zenburnpage colorscheme duckbones
colorscheme zenburned
``` ```
It works pretty much the same as the first one but pretty handy when extending
or customizing the colors to your likings.
## Configuration ## Configuration
Configuration is only available for Neovim. There are two ways to set Configuration is only available for Neovim. There are two ways to set
@@ -82,7 +80,7 @@ the flavor name e.g. `g:rosebones_italic_comments`.
#### g:zenbones_compat #### g:zenbones_compat
Set to `1` to enable compatibility mode. Enable in Vim. Set to `1` to enable compatibility mode. Enabled in Vim.
### lightline ### lightline
@@ -212,7 +210,3 @@ require("zenbones.term").apply_colors(palette)
And there you have it. Just call `colorscheme gruvbones` to use your new And there you have it. Just call `colorscheme gruvbones` to use your new
colorscheme. It respects `&background` and other configurations too. colorscheme. It respects `&background` and other configurations too.
Also checkout the [neobones](../colors/neobones.lua) and
[rosebones](../colors/rosebones.lua) colorscheme for a similar and complete
example.