Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ayu-theme/ayu-vim
Modern theme for modern VIMs
https://github.com/ayu-theme/ayu-vim
Last synced: about 2 months ago
JSON representation
Modern theme for modern VIMs
- Host: GitHub
- URL: https://github.com/ayu-theme/ayu-vim
- Owner: ayu-theme
- License: apache-2.0
- Created: 2016-10-17T11:44:20.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-07-15T05:05:45.000Z (5 months ago)
- Last Synced: 2024-08-01T16:28:24.051Z (5 months ago)
- Language: Vim Script
- Homepage:
- Size: 96.7 KB
- Stars: 1,660
- Watchers: 21
- Forks: 184
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred-test - ayu-theme/ayu-vim - Modern theme for modern VIMs (Vim Script)
README
🌟🌟🌟 **Looking for a maintainer.** 🌟🌟🌟 This project needs your care and knowledge of VIM. Open an issue if you want to take that role.
![ayu-vim](http://i.imgur.com/7vnF4Na.png)
# Warning
`ayu` is still in development and a lot of things need to be covered. Theme works only if VIM supports `termguicolors` option. This is true for [Neovim](https://neovim.io) and VIM from 7.4.1799.# Installation
```VimL
Plug 'ayu-theme/ayu-vim' " or other package manager
"...
set termguicolors " enable true colors support
let ayucolor="light" " for light version of theme
let ayucolor="mirage" " for mirage version of theme
let ayucolor="dark" " for dark version of theme
colorscheme ayu
```# Term colors
For now In `/term` you can find color schemes for iTerm. More to come.# Indent line
To get indent line like in the screenshot install https://github.com/Yggdroot/indentLine with my version of `Roboto Mono for Powerline` from this repo and add this config.
In this Roboto Mono version added powerline glyphs and increased line-height of the font itself.```Viml
" IndentLine {{
let g:indentLine_char = 'î‚´'
let g:indentLine_first_char = 'î‚´'
let g:indentLine_showFirstIndentLevel = 1
let g:indentLine_setColors = 0
" }}
```