TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What Vim plugins do you use?

7 pointsby hanifviraniover 11 years ago
Hello. I am returning to Vim after a short break. I thought this thread would be a good idea to make sure that I am up to date and that I haven&#x27;t missed any new plugins.<p>Also, what&#x27;s the best plugin&#x2F;setup for python code completion these days?

5 comments

bpeeblesover 11 years ago
Managed with <a href="https://github.com/gmarik/vundle" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gmarik&#x2F;vundle</a> here are the plugins I&#x27;d say I use every day:<p><a href="https://github.com/airblade/vim-gitgutter" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;airblade&#x2F;vim-gitgutter</a> show git change&#x2F;deleted lines<p><a href="https://github.com/bling/vim-airline" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;bling&#x2F;vim-airline</a> light weight, pure vimscript status line<p><a href="https://github.com/kien/ctrlp.vim" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;kien&#x2F;ctrlp.vim</a> fuzzy file finder that mostly works<p><a href="https://github.com/tpope/vim-fugitive" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;tpope&#x2F;vim-fugitive</a> very nice Git wrapper<p><a href="https://github.com/scrooloose/syntastic" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;scrooloose&#x2F;syntastic</a> generic in Vim syntax checker plugin<p><a href="https://github.com/sjl/gundo.vim" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;sjl&#x2F;gundo.vim</a> undo tree viewing
ElongatedTowelover 11 years ago
Far too many. Some I&#x27;m using maybe every twentieth time I start vim, but whenever I throw them out I suddenly need them...<p>vim-easymotion - Jump to positions easily (I still use the mouse too often)<p>vim-powerline - Prettier and more customizable display of useful data and the mode we&#x27;re in<p>vim-supertab - Still fails me too often but I&#x27;m having it set to omnicomplete most of the time<p>minibufexpl - Old but I don&#x27;t like the way the tabs works<p>ctrlp - Good fuzzy finder. Not sure if it&#x27;s the best, but it doesn&#x27;t require compiling Ruby extensions and weird crap<p>Gundo - Tames the undo tree<p>ack.vim - Integrates ack to search in files more easily<p>vim-css-color - Love this one. Underlays color values with the actual color<p>And other stuff like syntax for YAML, Jinja2 and HTML5.
jdonaldsonover 11 years ago
I have a list of all my vim plugins in its own dotfile: <a href="https://github.com/jdonaldson/dotfiles/blob/master/vim/settings/vundle.vim" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jdonaldson&#x2F;dotfiles&#x2F;blob&#x2F;master&#x2F;vim&#x2F;setti...</a>
mediusover 11 years ago
I use <a href="https://github.com/skwp/dotfiles" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;skwp&#x2F;dotfiles</a> for all my vim and zsh needs. I don&#x27;t need&#x2F;want to maintain my plugins and I like the recommended shortcuts.
johncoltraneover 11 years ago
The plugins you were using before your break still work so I&#x27;m not sure you need to look for new plugins. Unless some of your plugins didn&#x27;t satisfy you.<p>In which case you could list the offenders so that we try to come up with alternatives.<p>Anyway, there seems to be a consensus around youcompleteme+jedi, these days.<p>Welcome back.