Add base16_shell theme

base16_shell theme for vim-airline matches an active Base16 Shell
theme.

It should be used in combination with Base16 Shell, which sets the
correct colors in the terminal:
(https://github.com/chriskempson/base16-shell).

The colors used in this theme are within the 21 term colors set by
Base16 Shell.  The theme supports 2 options described in the docs.
This commit is contained in:
Maksim Shkrebtan
2016-12-17 19:48:31 +04:00
parent 2a97d9ee41
commit 6565b2d813
2 changed files with 123 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ Currently this repository contains the following themes:
* badcat
* badwolf
* base16(|airline-theme-base16|)
* base16_shell(|airline-theme-base16_shell|)
* base16_3024
* base16_apathy
* base16_ashes
@@ -163,6 +164,29 @@ Uses a predefined colorpalette for defining the colors, instead of guessing
the values from other highlight groups. To enable it: >
let g:airline#themes#base16#constant = 1
<
*airline-theme-base16-shell*
base16_shell theme for vim-airline matches your active Base16 Shell theme.
It should be used in combination with Base16 Shell, which sets the correct
colors in the terminal: (https://github.com/chriskempson/base16-shell). The
colors used in this theme are within the 21 term colors set by Base16 Shell.
The theme supports 2 options described below.
*g:airline_base16_improved_contrast*
Improves the contrast for the inactive statusline. To enable it: >
let g:airline_base16_improved_contrast = 1
<
*g:airline_base16_solarized*
Adjusts the colors to match base16_solirazed shell theme. You may also try to
use it with other Base16 Shell themes. To enable it: >
let g:airline_base16_solarized = 1
<
==============================================================================
CONTRIBUTIONS *airline-themes-contributions*