elly.vim
elly.vim copied to clipboard
Nostalgic brown theme for vim
elly.vim
elly.vim is a nostalgic and brown-based Vim color theme.
Installation
- Add
Plug 'ulwlu/elly.vim'in your .vimrc within vim-plug's loading function. - Run
:PlugInstall - Activate by
colorscheme elly - Use
set termguicolorsas well
Plugins
elly.vim is compatiable with Nerdtree, Airline, Lightline, coc.nvim, fzf-preview, and etc.

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
- elly-iTerm2
- elly-VSCode
- elly-tmux
- elly-kitty - This is made by Benoit Pingris.
- elly-chrome
- tilix-elly - This is made by Nirna Kajanovszki.
- hyper-elly - This is maintained by ciscohack.
Warning
If your terminal becomes like below,

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") . ">"