The delay in leaving insert mode used to drive me nuts in vim-powerline. I posted an issue and the author pointed me to this helpful Vim config snippet as a workaround (original link gone as the vim-powerline issue tracker has been removed, so reposting as a gist): <a href="https://gist.github.com/brendonrapp/5944296" rel="nofollow">https://gist.github.com/brendonrapp/5944296</a><p>I imagine the delay that the README for this project is referring to might be the same thing, so hopefully it can be alleviated with this same trick.<p>EDIT: Looks like the official Powerline docs share this little trick now: <a href="https://powerline.readthedocs.org/en/latest/tipstricks.html" rel="nofollow">https://powerline.readthedocs.org/en/latest/tipstricks.html</a>
I happen to really like this. I used a few lines in vimrc to make mine a little more practical for me:<p><pre><code> "" airline settings
" remove separators
let g:airline_left_sep=''
let g:airline_right_sep=''
" remove unused modes
let g:airline_enable_fugitive=0
let g:airline_enable_syntastic=0
" set second section to filename
let g:airline_section_b="%f"
" empty third and fourth sections
let g:airline_section_c=""
let g:airline_section_x=""
" put filetype in fifth section
let g:airline_section_y="%Y"
</code></pre>
curious to see how other people have theirs configured.<p>my full vim config is on github [1].<p>[1]: <a href="https://github.com/daturkel/vim-config" rel="nofollow">https://github.com/daturkel/vim-config</a>
> the old version still works well, but since it's deprecated new features won't get added<p>While it's deprecated, the author is actively working on this: <a href="https://github.com/Lokaltog/powerline" rel="nofollow">https://github.com/Lokaltog/powerline</a>, which works well and has even more functionality.
I've spent hours trying to get powerline to work with the patched fonts on OSX and Macvim without any results. This is lightweight, simple and just worked out of the box. Also the light theme is amazing. THANK YOU!
Is there a nice status line plugin that isn't full of color / visual noise? This would be by far the loudest and most animated part of my vim screen. I've tried powerline too and found it little but a distraction.<p>I basically don't need to know which mode I'm in, either - if I somehow forget, or come back to vim after a while, I can just hit escape to reset its state.
I like this a lot, and it's particularly relevant to me since I occasionally find myself running an older version of vim. Therefore I always like seeing plugins written in pure vimscript.