added vim-airline

This commit is contained in:
Oliver Ladner 2014-01-21 22:19:48 +01:00
commit 352a9773ff
73 changed files with 5475 additions and 0 deletions

View file

@ -0,0 +1,16 @@
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
if !get(g:, 'command_t_loaded', 0)
finish
endif
function! airline#extensions#commandt#apply(...)
if bufname('%') ==# 'GoToFile'
call airline#extensions#apply_left_override('CommandT', '')
endif
endfunction
function! airline#extensions#commandt#init(ext)
call a:ext.add_statusline_func('airline#extensions#commandt#apply')
endfunction