TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What Vim plugins do you use?

7 点作者 hanifvirani超过 11 年前
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 条评论

bpeebles超过 11 年前
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
ElongatedTowel超过 11 年前
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.
jdonaldson超过 11 年前
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>
medius超过 11 年前
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.
johncoltrane超过 11 年前
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.