2013-07-01 03:29:35 +08:00
# vim-airline
2013-07-01 02:49:56 +08:00
lean & mean statusline for vim
2013-07-01 03:29:35 +08:00
# rationale
there's already [powerline ](https://github.com/Lokaltog/powerline ), why yet another statusline?
* it's standard vimscript, no python needed
* it's small. i want the entire plugin to be less than 200 lines as a rule
* gets you 90% of the way there: in addition to all the standard goodies, supports [fugitve ](https://github.com/tpope/vim-fugitive ) and [syntastic ](https://github.com/scrooloose/syntastic )
2013-07-01 04:27:17 +08:00
* integration with [vim-bufferline ](https://github.com/bling/vim-bufferline )
2013-07-01 05:18:49 +08:00
* looks good with regular fonts, with support to use powerline font glyths
* it's fast to load. since it's so small, it only takes 0.5ms to load. by comparison, powerline needs 60ms on the same machine.
2013-07-01 03:29:35 +08:00
# 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 :-)
# configuration
there are a couple configuration values available:
* `g:airline_left_sep` the seperator used on the left side
* `g:airline_right_sep` the seperator used on the right side
* `g:airline_enable_fugitive` enable/disable fugitive integration
* `g:airline_enable_syntastic` enable/disable syntastic integration
2013-07-01 06:11:37 +08:00
* `g:airline_theme` change the theme, currently only `default` is available
2013-07-01 05:10:11 +08:00
* `g:airline_powerline_fonts` enable/disable usage of patched powerline font symbols
2013-07-01 03:29:35 +08:00
2013-07-01 09:27:15 +08:00
# demo
## regular font
![img ](regular.png )
## powerline font
![img ](powerline.png )
2013-07-01 03:29:35 +08:00
# contributions
2013-07-01 05:10:11 +08:00
contributions and pull requests are welcome.
2013-07-01 03:29:35 +08:00
# license
`:h license`