From b31088bc7377939c7a76438817c5068906971186 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Mon, 1 Nov 2021 17:06:22 +0800 Subject: [PATCH] doc: remove mention of zenflesh --- README.md | 5 ++--- doc/zenbones.md | 9 ++++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f96b45f..618efdd 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,7 @@ Just apply the colorscheme as usual: ```vim set termguicolors -colorscheme zenbones " light -colorscheme zenflesh " dark +colorscheme zenbones colorscheme zenwritten " Zero hue and saturation version colorscheme neobones " https://neovim.io flavor @@ -59,7 +58,7 @@ See [documentations](doc/zenbones.md) or `:help zenbones.txt`. ## Showcase -| Zenbones | Zenflesh | +| light | dark | | :------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------: | | ![diff](https://user-images.githubusercontent.com/7200153/133882734-de14cbb7-2faa-431b-9cb4-d674bf0f1d6a.png) | ![diff](https://user-images.githubusercontent.com/7200153/133882728-69abeca4-65d2-44e9-bddb-955e871c3143.png) | | ![diagnostics](https://user-images.githubusercontent.com/7200153/133882735-974ce339-1d5e-4bc0-9a95-82d21934222b.png) | ![diagnostics](https://user-images.githubusercontent.com/7200153/133882738-1b11be5f-5885-4ff9-9670-7e0bacbb6dd8.png) | diff --git a/doc/zenbones.md b/doc/zenbones.md index d9a4c3f..3974947 100644 --- a/doc/zenbones.md +++ b/doc/zenbones.md @@ -11,8 +11,7 @@ Just apply the colorscheme as usual: ```vim set termguicolors -colorscheme zenbones " light -colorscheme zenflesh " dark +colorscheme zenbones colorscheme zenwritten " Zero hue and saturation version colorscheme neobones " https://neovim.io flavor @@ -82,14 +81,14 @@ Set to `1` to enable compatibility mode. Enable in vim. ### lightline ```vim -let g:lightline = #{ colorscheme: 'zenbones' } " or zenflesh +let g:lightline = #{ colorscheme: 'zenbones' } ``` ### lualine ```lua require("lualine").setup { - options = { theme = "zenbones" }, -- or zenflesh + options = { theme = "zenbones" }, } ``` @@ -99,7 +98,7 @@ Zenbones is pretty extensible thanks to Lush. You can easily retrieve the colors in lua: ```lua -local theme = require "zenbones" -- or zenflesh +local theme = require "zenbones" local palette = require "zenbones.palette" print(theme.StatusLine.bg.hex)