A colorscheme for Vim, Airline and Lightline (generated by Estilo)
Install manually or use a package manager:
" vim-plug
Plug 'miguelverissimo/tendinitis.vim'
" NeoBundle
NeoBundle 'miguelverissimo/tendinitis.vim'
" Vundle
Plugin 'miguelverissimo/tendinitis.vim'
Once your plugin is installed you can set the color scheme in your .vimrc
or init.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 tendinitis
Use lightline themes (tendinitis
and tendinitisplus
):
" set lighline theme inside lightline config
let g:lightline = { 'colorscheme': 'tendinitis' }
Use airline themes (tendinitis
and tendinitisplus
):
" set airline theme
let g:airline_theme = 'tendinitis'
Fix for MacVim (see issue):
let macvim_skip_colorscheme=1
Copy colorscheme to vim's colors at ~/.vim/colors/
cp ~/.vim/bundle/tendinitis/colors/tendinitis.vim ~/.vim/colors/tendinitis.vim