Skip to content

kuuote/elly.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 

Repository files navigation

elly.vim

elly.vim is a nostalgic and brown-based Vim color theme.

elly iterm2

elly.vim

elly.vim

Installation

  1. Add Plug 'ulwlu/elly.vim' in your .vimrc within vim-plug's loading function.
  2. Run :PlugInstall
  3. Activate by colorscheme elly
  4. Use set termguicolors as well

Plugins

elly.vim is compatiable with Nerdtree, Airline, Lightline, coc.nvim, fzf-preview, and etc.

elly.vim

elly.vim

elly.vim

lightline

set below in vimrc

let g:lightline = {
      \ 'colorscheme': 'elly',
      \ }

airline

set below in vimrc

let g:airline_theme='elly'

coc-git

set below in coc-settings.json

	"git.addedSign.hlGroup": "CocDiffAdd",
	"git.changedSign.hlGroup": "CocDiffChange",
	"git.removedSign.hlGroup": "CocDiffDelete",
	"git.topRemovedSign.hlGroup": "CocDiffDelete",
	"git.changeRemovedSign.hlGroup": "CocDiffDelete",

Related Projects

Warning

If your terminal becomes like below,

elly.vim

This means your terminal doesn't support gui colors. In this case, please set below in vimrc before you set colorscheme elly.

let g:elly_termmode="cterm"

If you found some highlighting strange, please execute the command below and paste the result in issue.

:echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<' . synIDattr(synID(line("."),col("."),0),"name") ."> lo<" . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"

Thanks

  • ayu-vim - I use this theme for three years. I used the code as a reference.
  • vim-one - I used the code of airline autoload as a reference.