From 20b2ee3ac3f4cc950bdc697985138a4811ab35c6 Mon Sep 17 00:00:00 2001 From: Bailey Ling Date: Thu, 19 Sep 2013 23:24:27 -0400 Subject: [PATCH] add bold and italic accents. --- autoload/airline/themes.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autoload/airline/themes.vim b/autoload/airline/themes.vim index 81ed951a..c457dde9 100644 --- a/autoload/airline/themes.vim +++ b/autoload/airline/themes.vim @@ -42,6 +42,9 @@ function! airline#themes#patch(palette) endfor let a:palette.accents = get(a:palette, 'accents', {}) + let a:palette.accents.bold = [ '', '', '', '', 'bold' ] + let a:palette.accents.italic = [ '', '', '', '', 'italic' ] + if !has_key(a:palette.accents, 'red') let a:palette.accents.red = [ '#ff0000' , '' , 160 , '' ] endif