commit
70dd963c8e
|
@ -10,7 +10,7 @@ There's already [powerline][b], why yet another statusline?
|
|||
|
||||
* it's 100% vimscript; no python needed.
|
||||
* it's small. i want the core plugin to be *less than 200 lines* as a rule (specifically adhering to the [open/closed principle][h]).
|
||||
* despite the small size, it is fully featured and already integrates with: [vim-bufferline][f], [fugitive][d], [unite][i], [ctrlp][j], [minibufexpl][o], [gundo][p], [undotree][q], [nerdtree][r], [tagbar][s] and [syntastic][e].
|
||||
* despite the small size, it is fully featured and already integrates with: [vim-bufferline][f], [fugitive][d], [unite][i], [ctrlp][j], [minibufexpl][o], [gundo][p], [undotree][q], [nerdtree][r], [tagbar][s], [syntastic][e] and [lawrencium][u].
|
||||
* it looks good with regular fonts, and provides configuration points so you can use unicode or powerline symbols.
|
||||
* it's fast to load, taking roughly 1ms. by comparison, powerline needs 60ms on the same machine.
|
||||
* it's fully customizable; if you know a little `statusline` syntax you can tweak it to your needs.
|
||||
|
@ -98,3 +98,4 @@ Distributed under the same terms as the Vim license. See `:help license`.
|
|||
[r]: https://github.com/scrooloose/nerdtree
|
||||
[s]: https://github.com/majutsushi/tagbar
|
||||
[t]: https://powerline.readthedocs.org/en/latest/fontpatching.html
|
||||
[u]: https://bitbucket.org/ludovicchabant/vim-lawrencium
|
||||
|
|
|
@ -90,8 +90,9 @@ endfunction
|
|||
function! airline#update_externals()
|
||||
let g:airline_externals_bufferline = g:airline_enable_bufferline && exists('g:bufferline_loaded') ? '%{bufferline#generate_string()}' : "%f%m"
|
||||
let g:airline_externals_syntastic = g:airline_enable_syntastic && exists('g:loaded_syntastic_plugin') ? '%{SyntasticStatuslineFlag()}' : ''
|
||||
let g:airline_externals_fugitive = g:airline_enable_fugitive && exists('g:loaded_fugitive') && strlen(fugitive#head()) > 0
|
||||
\ ? g:airline_fugitive_prefix.fugitive#head() : ''
|
||||
let g:airline_externals_fugitive = g:airline_enable_fugitive ? (exists('g:loaded_fugitive') && strlen(fugitive#head()) > 0
|
||||
\ ? g:airline_fugitive_prefix.fugitive#head() : exists('g:loaded_lawrencium') && strlen(lawrencium#statusline()) > 0
|
||||
\ ? g:airline_fugitive_prefix.lawrencium#statusline() : '') : ''
|
||||
endfunction
|
||||
|
||||
function! s:get_section(key)
|
||||
|
|
|
@ -15,6 +15,7 @@ another statusline?
|
|||
* vim-bufferline <https://github.com/bling/vim-bufferline>
|
||||
* unite <https://github.com/Shougo/unite.vim>
|
||||
* ctrlp <https://github.com/kien/ctrlp.vim>
|
||||
* lawrencium <https://bitbucket.org/ludovicchabant/vim-lawrencium>
|
||||
* it looks good with regular fonts, and provides configuration points so you
|
||||
can use unicode or powerline symbols.
|
||||
* it's fast to load, taking roughly 1ms. by comparison, powerline needs
|
||||
|
@ -48,7 +49,7 @@ values):
|
|||
let g:airline_right_sep='<'
|
||||
<
|
||||
|
||||
* enable/disable fugitive integration
|
||||
* enable/disable fugitive/lawrencium integration
|
||||
>
|
||||
let g:airline_enable_fugitive=1
|
||||
<
|
||||
|
@ -143,7 +144,7 @@ with the usual statusline syntax.
|
|||
>
|
||||
" here are the the default values
|
||||
let g:airline_section_a (the mode/paste indicator)
|
||||
let g:airline_section_b (the fugitive branch indicator)
|
||||
let g:airline_section_b (the fugitive/lawrencium branch indicator)
|
||||
let g:airline_section_c (bufferline or filename)
|
||||
let g:airline_section_gutter (syntastic and readonly flag)
|
||||
let g:airline_section_x (filetype)
|
||||
|
|
Loading…
Reference in New Issue