fix color switching again. vimrc setting should override.

This commit is contained in:
Bailey Ling 2013-08-20 01:47:16 +00:00
parent dd5dbdd242
commit 54d3605497

View File

@ -76,10 +76,10 @@ function! s:init()
call airline#extensions#load()
let s:airline_theme_defined = exists('g:airline_theme')
if !airline#switch_matching_theme()
if !s:airline_theme_defined && !airline#switch_matching_theme()
let g:airline_theme = get(g:, 'airline_theme', 'dark')
call airline#switch_theme(g:airline_theme)
endif
call airline#switch_theme(g:airline_theme)
endif
endfunction