Skip to content
adrianrego edited this page Feb 23, 2012 · 1 revision

As of 02/22/2012, Janus ships with a basic statusline. The statusline can be customized in your ~/.vimrc.after.

Adding Git info with Fugitive:

if janus#is_plugin_enabled('fugitive')  
  set statusline+=%{fugitive#statusline()}  
endif  

Adding Syntastic warnings:

if janus#is_plugin_enabled('syntastic')
  set statusline+=%#warningmsg#
  set statusline+=%{SyntasticStatuslineFlag()}
  set statusline+=%*
endif

More Resources:

Clone this wiki locally