Files
zenbones-theme/doc/zenbones.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

212 lines
6.7 KiB
Plaintext
Raw Normal View History

2021-09-05 00:05:37 +00:00
*zenbones.txt* For NVIM v0.4.3 Last change: 2021 September 05
2021-08-27 02:01:48 +00:00
==============================================================================
Table of Contents *zenbones-table-of-contents*
1. Zenbones |zenbones-zenbones|
2021-08-27 08:09:41 +00:00
- Requirements |zenbones-requirements|
- Installation |zenbones-installation|
- Usage |zenbones-usage|
2021-08-30 01:35:08 +00:00
- Configuration |zenbones-configuration|
2021-08-31 02:48:36 +00:00
- Advanced Usage |zenbones-advanced-usage|
2021-09-05 00:19:48 +00:00
- Other plugins support |zenbones-other-plugins-support|
2021-08-27 08:22:52 +00:00
- Other implementations |zenbones-other-implementations|
- Inspirations |zenbones-inspirations|
2021-08-27 02:01:48 +00:00
==============================================================================
1. Zenbones *zenbones-zenbones*
2021-09-04 09:04:52 +00:00
Zenbones is a light vim/neovim |colorscheme| designed to highlight code using
2021-08-27 02:01:48 +00:00
contrasts and font variations. Colors are tasked only for other roles such as
diagnostics, diffs, search matches.
2021-08-27 08:35:18 +00:00
REQUIREMENTS *zenbones-requirements*
2021-08-27 02:01:48 +00:00
2021-09-04 09:04:52 +00:00
Primarily built for neovim but it works pretty well with vim. However here are
2021-08-27 02:01:48 +00:00
some requirements to take full advantage of the colorscheme:
2021-09-04 09:04:52 +00:00
- 24-bit RGB colors (neovim or vim compiled with +termguicolors)
2021-08-27 02:01:48 +00:00
- Font with bold and italic
- Terminal or GUI with bold and italic support
2021-08-27 08:35:18 +00:00
INSTALLATION *zenbones-installation*
2021-08-27 02:01:48 +00:00
Example installation using packer:
>
use "mcchrish/zenbones.nvim"
-- Optionally install Lush. Useful if you want to extend the theme
-- e.g. create a statusline plugin theme using zenbones colors
use "rktjmp/lush.nvim"
-- See Advanced Usage section for more details
<
2021-08-27 08:35:18 +00:00
USAGE *zenbones-usage*
2021-08-27 02:01:48 +00:00
Just apply the colorscheme as usual:
>
set termguicolors
colorscheme zenbones
<
2021-09-05 01:23:38 +00:00
If you want to make use of the lua version:
2021-08-27 02:01:48 +00:00
>
2021-09-05 01:23:38 +00:00
" has('nvim') only
2021-08-27 02:01:48 +00:00
set termguicolors
colorscheme zenbones-lush
<
It works pretty much the same as the first one but pretty handy when extending
or customizing the colors to your likings.
2021-08-27 08:16:56 +00:00
2021-08-30 01:35:08 +00:00
CONFIGURATION *zenbones-configuration*
2021-08-31 02:48:36 +00:00
Configuration is only available for `zenbones-lush`.
2021-08-30 01:35:08 +00:00
*zenbones-g:zenbones_lightness*
2021-09-01 05:21:19 +00:00
g:zenbones_lightness Change background colors lightness.
2021-08-30 01:35:08 +00:00
**'bright'**
<img width="1080" alt="Bright lightness"
src="https://user-images.githubusercontent.com/7200153/131272384-710e253f-059d-46fd-bf0e-7d82f62d62cd.png">
**Default** _(unset)_
<img width="1080" alt="Default lightness"
src="https://user-images.githubusercontent.com/7200153/131272333-3fb67e68-fcd2-48ae-b8c4-ab24b701ed5e.png">
**'dim'**
<img width="1080" alt="Dim lightness"
src="https://user-images.githubusercontent.com/7200153/131272410-329636bb-fd8e-42fb-83aa-f436d211b5ed.png">
2021-08-31 02:48:36 +00:00
*zenbones-g:zenbones_solid_vert_split*
g:zenbones_solid_vert_split Set to `v:true` to make vertical split
more visible with a dimmer background
highlight.
*zenbones-g:zenbones_dim_noncurrent_window*
2021-09-05 01:23:38 +00:00
g:zenbones_dim_noncurrent_window Set to `v:true` to make non-current
window background dimmer than _Normal_.
2021-09-05 00:19:48 +00:00
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)
<
2021-08-31 02:48:36 +00:00
2021-09-05 01:23:38 +00:00
See also Lushs documentation
<https://github.com/rktjmp/lush.nvim#advanced-usage> for the complete options.
2021-08-31 02:48:36 +00:00
2021-08-27 08:35:18 +00:00
OTHER PLUGINS SUPPORT *zenbones-other-plugins-support*
2021-08-27 02:01:48 +00:00
2021-09-04 09:49:37 +00:00
Aside from LSP and basic Tree-sitter support, here are some plugins that are
currently supported.
2021-08-27 02:01:48 +00:00
2021-08-29 03:00:54 +00:00
- Git Signs <https://github.com/lewis6991/gitsigns.nvim>
2021-09-03 03:21:56 +00:00
- Git Gutter <https://github.com/airblade/vim-gitgutter>
2021-08-29 03:00:54 +00:00
- Indent Blankline <https://github.com/lukas-reineke/indent-blankline.nvim>
2021-08-27 08:35:18 +00:00
- Telescope <https://github.com/nvim-telescope/telescope.nvim>
2021-08-29 03:00:54 +00:00
- Sneak <https://github.com/justinmk/vim-sneak>
2021-09-04 09:04:52 +00:00
- Lualine <https://github.com/hoob3rt/lualine.nvim>
2021-08-29 03:00:54 +00:00
- BarBar <https://github.com/romgrk/barbar.nvim>
- CoC <https://github.com/neoclide/coc.nvim>
- Neogit <https://github.com/TimUntersberger/neogit>
2021-09-05 09:58:07 +00:00
- WhichKey <https://github.com/folke/which-key.nvim>
2021-08-27 02:01:48 +00:00
2021-08-27 08:35:18 +00:00
OTHER IMPLEMENTATIONS *zenbones-other-implementations*
2021-08-27 02:01:48 +00:00
2021-09-04 09:12:16 +00:00
- iTerm2 <extras/iterm/zenbones.itermcolors>
- Kitty <extras/kitty/zenbones.conf>
2021-09-04 22:29:02 +00:00
- Alacritty <extras/alacritty/zenbones.yml>
2021-09-05 00:05:37 +00:00
- WezTerm <extras/wezterm/Zenbones.toml>
2021-08-27 02:01:48 +00:00
2021-08-27 21:44:22 +00:00
PRINT TERMINAL COLORS
2021-08-27 02:01:48 +00:00
2021-08-27 21:44:22 +00:00
You can retrieve the terminal colors by using this command:
2021-08-27 02:01:48 +00:00
2021-08-27 08:22:52 +00:00
>
:lua require("zenbones.print").print_terminal_colors()
2021-09-03 03:21:56 +00:00
<
Useful when you want to apply a zenbones theme to your terminal. Recent output:
>
2021-08-27 08:22:52 +00:00
Terminal colors
foreground: #2C363C
background: #F0EDEC
ansi color0: #2C363C
2021-09-03 03:21:56 +00:00
ansi color1: #A8334C
2021-08-27 08:22:52 +00:00
ansi color2: #617437
2021-09-03 03:21:56 +00:00
ansi color3: #944927
2021-08-27 08:22:52 +00:00
ansi color4: #286486
ansi color5: #88507D
2021-09-03 03:21:56 +00:00
ansi color6: #3B8992
ansi color7: #F0EDEC
ansi color8: #44525B
ansi color9: #9C2842
ansi color10: #55672A
ansi color11: #87411E
ansi color12: #1F5A7A
ansi color13: #864079
ansi color14: #2F7C85
ansi color15: #DCD2CE
cursor foreground: #F2F0EF
cursor background: #2C363C
inactive cursor foreground: #F2F0EF
inactive cursor background: #4D5C65
selection background: #D2DFE7
2021-08-27 08:22:52 +00:00
<
2021-08-27 02:01:48 +00:00
2021-09-04 09:49:37 +00:00
Its also possible to generate color configuration files using a template,
this one for Kitty <lua/zenbones/build/kitty.lua> for example. Please feel free
to submit a PR if you want to add some more.
2021-08-27 08:35:18 +00:00
INSPIRATIONS *zenbones-inspirations*
2021-08-27 08:16:56 +00:00
2021-08-27 08:35:18 +00:00
Zenbones is heavily inspired by Verdandi
<https://github.com/be5invis/vsc-theme-verdandi> and vim-yin-yang
<https://github.com/pgdouyon/vim-yin-yang>. The name came from a book called
Zen Flesh, Zen Bones <https://en.wikipedia.org/wiki/Zen_Flesh,_Zen_Bones>.
2021-08-27 08:16:56 +00:00
2021-08-27 08:35:18 +00:00
There are more similar colorschemes with few colors from this collection
<https://github.com/mcchrish/vim-no-color-collections>.
2021-08-27 21:53:36 +00:00
2021-08-27 21:02:03 +00:00
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
2021-08-27 02:01:48 +00:00
vim:tw=78:ts=8:noet:ft=help:norl: