Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kuuote/elly.vim

Archive of ulwlu/elly.vim
https://github.com/kuuote/elly.vim

colorscheme theme vim vim-theme

Last synced: 23 days ago
JSON representation

Archive of ulwlu/elly.vim

Awesome Lists containing this project

README

        

## 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](https://user-images.githubusercontent.com/41639488/100526196-fc110380-3209-11eb-913a-22adfa3c19ab.png)

### 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,

![elly.vim](https://user-images.githubusercontent.com/41639488/118059208-ef085b00-b3ca-11eb-8233-d2940c9e6dc3.png)

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.