mirror of
https://github.com/vim-airline/vim-airline-themes.git
synced 2024-12-12 13:23:35 +08:00
10 lines
331 B
VimL
10 lines
331 B
VimL
|
function! airline#extensions#load()
|
||
|
if exists('g:loaded_ctrlp') && g:loaded_ctrlp
|
||
|
call airline#extensions#ctrlp#load_ctrlp_hi()
|
||
|
let g:ctrlp_status_func = {
|
||
|
\ 'main': 'airline#extensions#ctrlp#ctrlp_airline',
|
||
|
\ 'prog': 'airline#extensions#ctrlp#ctrlp_airline_status',
|
||
|
\ }
|
||
|
endif
|
||
|
endfunction
|