ayu-vim/README.md

31 lines
1.0 KiB
Markdown
Raw Normal View History

2016-10-17 12:42:35 +00:00
![Imgur](http://i.imgur.com/zPs92Hk.png)
# Pre-alpha Warning
2016-10-18 09:46:06 +00:00
This theme is in development stage 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.
2016-10-17 12:42:35 +00:00
# Instalation
```VimL
Plug 'ayu-theme/ayu-vim' " or other package manager
"...
colorscheme ayu
set background=light " for light version of theme
set background=dark " for dark version of theme
2016-10-17 20:40:43 +00:00
set termguicolors " enable true colors support
2016-10-17 12:42:35 +00:00
```
# Term colors
For now In `/term` you can find color schemes for iTerm. More to come.
2016-10-17 17:11:05 +00:00
# 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.
2016-10-17 12:42:35 +00:00
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
" }}
```