https://github.com/kuuote/elly.vim
Archive of ulwlu/elly.vim
https://github.com/kuuote/elly.vim
colorscheme theme vim vim-theme
Last synced: 9 days ago
JSON representation
Archive of ulwlu/elly.vim
- Host: GitHub
- URL: https://github.com/kuuote/elly.vim
- Owner: kuuote
- License: mit
- Created: 2023-05-05T11:13:00.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-05T11:13:45.000Z (about 2 years ago)
- Last Synced: 2025-06-24T19:05:53.674Z (10 days ago)
- Topics: colorscheme, theme, vim, vim-theme
- Language: Vim Script
- Homepage:
- Size: 35.2 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## elly.vim
*elly.vim* is a nostalgic and brown-based Vim color theme.
## 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.

### lightline
set below in vimrc
```vim
let g:lightline = {
\ 'colorscheme': 'elly',
\ }
```### airline
set below in vimrc
```vim
let g:airline_theme='elly'
```### coc-git
set below in coc-settings.json
```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](https://github.com/ulwlu/elly-iterm2)
- [elly-VSCode](https://github.com/ulwlu/elly-vscode)
- [elly-tmux](https://github.com/ulwlu/elly-tmux)
- [elly-kitty](https://github.com/ulwlu/elly-kitty) - This is made by [Benoit Pingris](https://github.com/BenoitPingris).
- [elly-chrome](https://chrome.google.com/webstore/detail/elly-theme/bcgeoaoekdiakmhobofhbdnpeibbhaom)
- [tilix-elly](https://github.com/HexHelix-xx/tilix-elly) - This is made by [Nirna Kajanovszki](https://github.com/HexHelix-xx).
- [hyper-elly](https://github.com/ciscohack/hyper-elly) - This is maintained by [ciscohack](https://github.com/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`.
```vim
let g:elly_termmode="cterm"
```If you found some highlighting strange, please execute the command below and paste the result in issue.
```vim
: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](https://github.com/ayu-theme/ayu-vim) - I use this theme for three years. I used the code as a reference.
- [vim-one](https://github.com/rakr/vim-one) - I used the code of airline autoload as a reference.