2013-07-01 23:49:40 +00:00
|
|
|
|
*airline.txt* Lean and mean statusline that's light as air
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
RATIONALE *airline*
|
|
|
|
|
|
|
|
|
|
there's already powerline <https://github.com/Lokaltog/powerline>, why yet
|
|
|
|
|
another statusline?
|
|
|
|
|
|
2013-07-08 03:12:05 +00:00
|
|
|
|
* it's 100% vimscript; no python needed.
|
|
|
|
|
* it's small. i want the core plugin to be less than 200 lines as a rule.
|
|
|
|
|
* it gets you 90% of the way there; in addition to all the standard goodies,
|
|
|
|
|
it integrates with:
|
|
|
|
|
* fugitve <https://github.com/tpope/vim-fugitive>
|
|
|
|
|
* syntastic <https://github.com/scrooloose/syntastic>
|
|
|
|
|
* vim-bufferline <https://github.com/bling/vim-bufferline>
|
|
|
|
|
* unite <https://github.com/Shougo/unite.vim>
|
|
|
|
|
* ctrlp <https://github.com/kien/ctrlp.vim>
|
|
|
|
|
* 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.
|
|
|
|
|
* it's trivial to write colorschemes; for a minimal theme you need to edit
|
|
|
|
|
9 lines of colors. (please send pull requests if you create new themes!)
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
NAME *airline-name*
|
|
|
|
|
|
|
|
|
|
why's it called airline?
|
|
|
|
|
|
|
|
|
|
i wrote this on an airplane, and since it's light as air it turned out to be a
|
|
|
|
|
good name :-)
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
2013-07-01 23:49:40 +00:00
|
|
|
|
CONFIGURATION *airline-configuration*
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
|
|
|
|
there are a couple configuration values available (shown with their default
|
|
|
|
|
values):
|
|
|
|
|
|
2013-07-02 03:48:50 +00:00
|
|
|
|
* the separator used on the left side
|
2013-07-01 11:33:26 +00:00
|
|
|
|
>
|
|
|
|
|
let g:airline_left_sep='>'
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-02 03:48:50 +00:00
|
|
|
|
* the separator used on the right side
|
2013-07-01 11:33:26 +00:00
|
|
|
|
>
|
2013-07-02 09:49:06 +00:00
|
|
|
|
let g:airline_right_sep='<'
|
2013-07-01 11:33:26 +00:00
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
* enable/disable fugitive integration
|
|
|
|
|
>
|
|
|
|
|
let g:airline_enable_fugitive=1
|
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
* enable/disable syntastic integration
|
|
|
|
|
>
|
|
|
|
|
let g:airline_enable_syntastic=1
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-06 00:15:52 +00:00
|
|
|
|
* change the theme (available options: dark, light, simple, badwolf)
|
2013-07-01 11:33:26 +00:00
|
|
|
|
>
|
2013-07-06 00:15:52 +00:00
|
|
|
|
let g:airline_theme='dark'
|
2013-07-01 11:33:26 +00:00
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
* enable/disable usage of patched powerline font symbols
|
|
|
|
|
>
|
|
|
|
|
let g:airline_powerline_fonts=0
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-04 15:39:49 +00:00
|
|
|
|
* define the set of text to display for each mode.
|
|
|
|
|
>
|
|
|
|
|
let g:airline_mode_map = {} " see source for current list
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-02 11:04:36 +00:00
|
|
|
|
* define the set of filename match queries which excludes a window from having
|
|
|
|
|
its statusline modified
|
2013-07-02 11:00:31 +00:00
|
|
|
|
>
|
2013-07-02 11:04:36 +00:00
|
|
|
|
let g:airline_exclude_filenames = [] " see source for current list
|
2013-07-02 11:00:31 +00:00
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
* define the set of filetypes which are excluded from having its window
|
|
|
|
|
statusline modified
|
|
|
|
|
>
|
|
|
|
|
let g:airline_exclude_filetypes = [] " see source for current list
|
|
|
|
|
<
|
2013-07-08 00:38:19 +00:00
|
|
|
|
|
2013-07-01 23:49:40 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
CUSTOMIZATION *airline-customization*
|
|
|
|
|
|
2013-07-02 03:48:50 +00:00
|
|
|
|
here are some unicode symbols for customizing the left/right separators, as
|
2013-07-01 23:49:40 +00:00
|
|
|
|
well as the powerline font glyths
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
" unicode symbols
|
|
|
|
|
let g:airline_left_sep = '»'
|
|
|
|
|
let g:airline_left_sep = '▶'
|
|
|
|
|
let g:airline_right_sep = '«'
|
|
|
|
|
let g:airline_right_sep = '◀'
|
|
|
|
|
let g:airline_linecolumn_prefix = '␊ '
|
|
|
|
|
let g:airline_linecolumn_prefix = ' '
|
2013-07-02 11:00:31 +00:00
|
|
|
|
let g:airline_linecolumn_prefix = '¶ '
|
2013-07-01 23:49:40 +00:00
|
|
|
|
let g:airline_fugitive_prefix = '⎇ '
|
2013-07-06 18:22:34 +00:00
|
|
|
|
let g:airline_paste_symbol = 'ρ'
|
2013-07-06 18:30:21 +00:00
|
|
|
|
let g:airline_paste_symbol = 'Þ'
|
|
|
|
|
let g:airline_paste_symbol = '∥'
|
2013-07-01 23:49:40 +00:00
|
|
|
|
|
|
|
|
|
" powerline symbols
|
|
|
|
|
let g:airline_left_sep = ''
|
2013-07-08 00:38:19 +00:00
|
|
|
|
let g:airline_left_alt_sep = ''
|
2013-07-01 23:49:40 +00:00
|
|
|
|
let g:airline_right_sep = ''
|
2013-07-08 00:38:19 +00:00
|
|
|
|
let g:airline_right_alt_sep = ''
|
2013-07-04 15:39:49 +00:00
|
|
|
|
let g:airline_fugitive_prefix = ' '
|
2013-07-01 23:49:40 +00:00
|
|
|
|
let g:airline_readonly_symbol = ''
|
|
|
|
|
let g:airline_linecolumn_prefix = ' '
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-04 15:39:49 +00:00
|
|
|
|
for more intricate customizations, you can replace the predefined sections
|
2013-07-06 17:01:21 +00:00
|
|
|
|
with the usual statusline syntax.
|
2013-07-04 15:39:49 +00:00
|
|
|
|
|
|
|
|
|
>
|
2013-07-08 00:38:19 +00:00
|
|
|
|
" here are the the default values
|
2013-07-08 01:00:14 +00:00
|
|
|
|
let g:airline_section_a (the mode indicator)
|
|
|
|
|
let g:airline_section_b (the fugitive 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)
|
|
|
|
|
let g:airline_section_y (fileencoding, fileformat)
|
|
|
|
|
let g:airline_section_z (percentage, line number, column number)
|
2013-07-08 03:12:05 +00:00
|
|
|
|
|
|
|
|
|
" here is an example of how you could replace the fugitive indicator with
|
|
|
|
|
" the current working directory, followed by the filename.
|
|
|
|
|
let g:airline_section_b = '%{getcwd()}'
|
|
|
|
|
let g:airline_section_c = '%t'
|
2013-07-04 15:39:49 +00:00
|
|
|
|
<
|
|
|
|
|
|
2013-07-01 11:33:26 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
CONTRIBUTIONS *airline-contributions*
|
|
|
|
|
|
|
|
|
|
contributions and pull requests are welcome.
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
LICENSE *airline-license*
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
:help license
|
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
vim:tw=78:ts=8:ft=help:norl:
|