Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kuuote/elly.vim
- Owner: kuuote
- License: mit
- Created: 2023-05-05T11:13:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-05T11:13:45.000Z (over 1 year ago)
- Last Synced: 2024-12-05T08:14:18.920Z (29 days ago)
- Topics: colorscheme, theme, vim, vim-theme
- Language: Vim Script
- Homepage:
- Size: 35.2 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- 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.
![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.