From 8f0401580bae2ccf00d23d2f89c8db564e5260fe Mon Sep 17 00:00:00 2001 From: Bailey Ling Date: Sun, 18 Aug 2013 19:02:14 +0000 Subject: [PATCH] fix airline theme not getting loaded on startup (#151). --- plugin/airline.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/airline.vim b/plugin/airline.vim index caeaa867..5ab46116 100644 --- a/plugin/airline.vim +++ b/plugin/airline.vim @@ -78,7 +78,7 @@ function! s:init() let s:airline_theme_defined = exists('g:airline_theme') let g:airline_theme = get(g:, 'airline_theme', 'dark') - call on_colorscheme_changed() + call airline#switch_theme(g:airline_theme) endif endfunction