# tender.vim
**Repository Path**: vi_mirrors/tender.vim
## Basic Information
- **Project Name**: tender.vim
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-11-07
- **Last Updated**: 2025-09-12
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# 
A 24bit colorscheme for Vim, Airline and Lightline (generated by
[Estilo](https://github.com/jacoborus/estilo))
- [Screenshots](#screenshots)
- [Installation](#installation)
- [Terminal themes](#terminal-themes)
## Screenshots







## Installation
Install manually or use a package manager:
```vim
" vim-plug
Plug 'jacoborus/tender.vim'
" NeoBundle
NeoBundle 'jacoborus/tender.vim'
" Vundle
Plugin 'jacoborus/tender.vim'
```
Once your plugin is installed you can set the color scheme in your `.vimrc` or
`init.vim`
```vim
" If you have vim >=8.0 or Neovim >= 0.1.5
if (has("termguicolors"))
set termguicolors
endif
" For Neovim 0.1.3 and 0.1.4
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
" Theme
syntax enable
colorscheme tender
```
Use [lightline](https://github.com/itchyny/lightline.vim) themes (`tender` and
`tenderplus`):
```vim
" set lighline theme inside lightline config
let g:lightline = { 'colorscheme': 'tender' }
```
Use [airline](https://github.com/vim-airline/vim-airline) themes (`tender` and
`tenderplus`):
```vim
" set airline theme
let g:airline_theme = 'tender'
```
Fix for MacVim ([see issue](https://github.com/jacoborus/tender.vim/issues/9)):
```vim
let macvim_skip_colorscheme=1
```
Copy color to vim if no exist `~/.vim/colors/`, create folder.
```sh
cp ~/.vim/bundle/tender/colors/tender.vim ~/.vim/colors/tender.vim
```
## Terminal themes
- [Tender Alacritty](https://github.com/huyvohcmc/tender-alacritty) by
[@huyvohcmc](https://github.com/huyvohcmc)
- [Tender xresources](https://github.com/pebeto/tender-xresources) by
[@pebeto](https://github.com/pebeto)
- [Tender Blink Shell](https://github.com/Rafaelcv7/Jacoborus-Tendertheme) by
[@Rafaelcv7](https://github.com/Rafaelcv7)
- [Tender WezTerm](https://github.com/kyoheiu/tender-wezterm) by
[@kyoheiu](https://github.com/kyoheiu)
- [Tender Kitty](https://github.com/CompEng0001/tender-kitty) &
[Tender Mintty](https://github.com/CompEng0001/tender-mintty) by
[@CompEng0001](https://github.com/CompEng0001)

---
© 2016 Jacobo Tabernero [(jacoborus.codes)](http://jacoborus.codes) - Released
under [MIT License](https://raw.github.com/jacoborus/nanobar/master/LICENSE)