add ctrlp support for most themes

This commit is contained in:
Bailey Ling
2013-08-06 20:52:52 +00:00
parent 772fbc18e7
commit ae587c3dcb
7 changed files with 25 additions and 3 deletions
+4
View File
@@ -38,6 +38,10 @@ function! s:generate()
" And of course, you can always do it manually as well.
let s:IA = [ '#444444', '#1c1c1c', 237, 234 ]
let g:airline#themes#jellybeans#inactive = airline#themes#generate_color_map(s:IA, s:IA, s:IA, s:file)
if get(g:, 'loaded_ctrlp', 0)
let g:airline#themes#jellybeans#ctrlp = airline#extensions#ctrlp#generate_color_map(s:N3, s:N2, s:I1)
endif
endfunction
call s:generate()