vote up 24 vote down star
25

What are your favorite (G)Vim plugins/scripts?

flag

2  
Wiki? – Lucas Jones Aug 26 at 18:23

21 Answers

vote up 18 vote down check

Nerdtree

The NERD tree allows you to explore your filesystem and to open files and directories. It presents the filesystem to you in the form of a tree which you manipulate with the keyboard and/or mouse. It also allows you to perform simple filesystem operations.

The tree can be toggled easily with :NERDTreeToggle which can be mapped to a more suitable key. The keyboard shortcuts in the NERD tree are also easy and intuitive.

Edit: Added synopsis

link|flag
1  
For those of us not wanting to follow every link to find out about each plugin, care to furnish us with a brief synopsis? – SpoonMeiser Sep 17 '08 at 19:32
1  
Woah, that's a great plugin! Thanks! – Luis Jun 23 at 22:46
vote up 13 vote down

Tim Pope has some kickass plugins. I love his surround plugin.

link|flag
I'm not such a fan of surround, but his older plugin parenquote.vim is very nice and (IMO) more easliy customizable. – Ken Bloom Nov 17 at 15:16
vote up 8 vote down

A very nice grep replacement for GVim is Ack. A search plugin written in Perl that beats Vim's internal grep implementation and externally invoked greps, too. It also by default skips any CVS directories in the project directory, e.g. '.svn'. This blog shows a way to integrate Ack with vim.

link|flag
vote up 4 vote down

I really like the SuperTab plugin, it allows you to use the tab key to do all your insert completions.

link|flag
vote up 5 vote down

Not a plugin, but I advise any Mac user to switch to the MacVim distribution which is vastly superior to the official port.

As for plugins, I used VIM-LaTeX for my thesis and was very satisfied with the usability boost. I also like the Taglist plugin which makes use of the ctags library.

link|flag
vote up 2 vote down

I use the following two plugins all the time:

  • project
  • vimoutliner
link|flag
vimoutliner is really good for managing small pieces of information (from tasks/todo-s to links) – Csaba_H Jun 24 at 13:47
vote up 7 vote down

I have recently started using a plugin that highlights differences in your buffer from a previous version in your RCS system (Subversion, git, whatever). You just need to press a key to toggle the diff display on/off. You can find it here: http://github.com/ghewgill/vim-scmdiff. Patches welcome!

link|flag
Do you know if this supports bitkeeper? I looked on the website but couldn't even see whom to ask. – Nathan Fellman Sep 15 '08 at 18:51
It doesn't explicitly support bitkeeper at the moment, but as long as bitkeeper has a "diff" command that outputs a normal patch file, it should be easy enough to add. – Greg Hewgill Sep 16 '08 at 9:26
vote up 3 vote down

I really love the snippetsEmu Plugin. It emulates some of the behaviour of Snippets from the OS X editor TextMate, in particular the variable bouncing and replacement behaviour.

link|flag
vote up 1 vote down

Zenburn color scheme and good fonts - Droid Sans Mono on Linux, Consolas on Windows.

link|flag
vote up 6 vote down

A.vim is a great little plugin. It allows you to quickly switch between header and source files with a single command. The default is :A, but I remapped it to F2 reduce keystrokes.

link|flag
vote up 4 vote down

Tomas Restrapo posted on some great Vim scripts/plugins. He has also pointed out some nice color themes on his blog, too. Check out his Vim category.

link|flag
1  
I especially like the camelcasemotion script he links on there. – Andy May 12 at 13:27
vote up 4 vote down

Taglist, a source code browser plugin for Vim, is currently the top rated plugin at the Vim website and is my favorite plugin.

link|flag
vote up 2 vote down

Matrix Mode.

link|flag
vote up 0 vote down

During maintenance of a very big and old C++ project I've created two plugins and these are the only ones I use:

0scan substitute for me taglist, buflist, files explorers, and other things like quick convenience file search.

SourceCodeObedience is very convenient cscope and ctags code surfing with stored history of all your searches with 'Filter' feature.

I use them not because they are mine but because they do the complete job and helps me to maintain of ~1Gb unfamiliar code base.

link|flag
vote up 1 vote down

The vcscommand plugin provides global ex commands for manipulating version-controlled source files and it supports CVS,SVN and some other repositories.

You can do almost all repository related tasks from with in vim:
* Taking the diff of current buffer with repository copy
* Adding new files
* Reverting the current buffer to the repository copy by nullifying the local changes....

link|flag
vote up 0 vote down

I take buftabs.vim and localvimrc.vim with me whereever I go!

buftabs : Minimalistic buffer tabs saving screen space

Local configuration : Use different settings for different directories.

link|flag
vote up 3 vote down

No one said matchit yet ? Makes HTML / XML soup much nicer http://www.vim.org/scripts/script.php?script_id=39

link|flag
vote up 0 vote down

For vim I like a little help with completions. Vim has tons of completion modes, but really, I just want vim to complete anything it can, whenver it can.

I hate typing ending quotes, but fortunately this plugin obviates the need for such misery.

Those two are my heavy hitters.

This one may step up to roam my code like an unquiet shade, but I've yet to try it.

link|flag
vote up 1 vote down

I love snipMate. It's simular to snippetsEmu, but has a much better syntax to read (like Textmate).

link|flag
vote up 0 vote down
  1. Elegant (mini) buffer explorer - This is the multiple file/buffer manager I use. Takes very little screen space. It looks just like most IDEs where you have a top tab-bar with the files you've opened. I've tested some other similar plugins before, and this is my pick.
  2. TagList - Small file explorer, without the "extra" stuff the other file explorers have. Just lets you browse directories and open files with the "enter" key. Note that this has already been noted by previous commenters to your questions.
  3. SuperTab - Already noted by WMR in this post, looks very promising. It's an auto-completion replacement key for Ctrl-P.
  4. Desert256 color Scheme - Readable, dark one.
  5. Moria color scheme - Another good, dark one. Note that it's gVim only.
  6. Enahcned Python syntax - If you're using Python, this is an enhanced syntax version. Works better than the original. I'm not sure, but this might be already included in the newest version. Nonetheless, it's worth adding to your syntax folder if you need it.
  7. Enhanced JavaScript syntax - Same like the above.

  8. EDIT: Comments - Great little plugin to [un]comment chunks of text. Language recognition included ("#", "/", "/* .. */", etc.) .

link|flag
vote up 0 vote down

Just gonna name a few I didn't see here, but which I still find extremely helpful:

  • Gist plugin - Github Gists (Kind of Githubs answer to Pastebin, integrated with Git for awesomeness!)
  • Mustang color scheme (Can't link directly due to low reputation, Google it!) - Dark, and beautiful color scheme. Looks really good in the terminal, and even better in gVim! (Due to 256 color support)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.