I tried Conque and didn't care for it, refreshing was slow and I favored the detached approach.
I do, however, encourage everyone to try out the different options to find what works for them, what works for me doesn't work for everyone. Conque is a really neat plugin, it's definitely worth a shot for people shopping around.
Vim-shell isn't bad, but the version on the site is outdated. You have to scour their mailing list to find a working link to a patch that works with vim 7.2.
What's the value in rainbow parentheses? I have coded Lisp for years, and have never wondered where I need to add parens; it's intrinsic in the structure of the code. Braces are the same way -- you know when you have the right number. No need for gaudy colors just because nested parentheses are new to you...
You don't need them, but I do find them extremely useful for at a glance parentheses matching, especially if the expressions span multiple lines.
So, the value is as a visual aid - just like any syntax highlighting, highlighting matching parentheses when the cursor is over them, line numbers etc. Non of these things are strictly needed, but they help us comprehend code more easily and quickly.
I just started using Clojure this weekend with Vim. I am not sure why the author of this post didn't use VimClojure with Nailgun, but it works seamlessly and lets you have rich-SLIME like interaction with a REPL.
The only thing I wish I had was a paredit like mode, but you can't have everything!
If you know about vim text objects and f/t motion, there isn't much that paredit mode can do that vim text objects don't. E.g f) is the equivalent to paredit-forward while ci( is 'replace contents of s-expr' and da[ would be 'delete vector'.
I use AutoClose.vim and Surround.vim to deal with most pairwise operations. The only major tweak I make is to rebind s to work as 'surround':
Dude! Thank you so much. I was trying to figure out what magic incantation I needed to find the docs for "inner", etc. :help text-objects did the trick and I would have never considered remapping the s/S keys, which are agreeably pretty useless.
EDIT: I created slightly different bindings. These are a bit longer, but have the same power, flexibility, and use of the documented text-object motions.
Those mappings aren't doing what you expect, because s and S in visual mode do the same thing. And instead of mapping all the text objects like that and using visual mode, you should just do this instead:
Contrary to popular belief (and my own personal preference ;), you can hack Clojure from Vim, Intellij, Eclipse, and Netbeans (the most full-featured at the moment besides Emacs).
Agreed. I see a lot of tweets from people trying to decide on the best editor or IDE for Clojure. Personally, I use Clojure (in all honesty I am just dabbling in it and haven't used it on a full-blown project) but IMO to a large extent - it does not matter.
Use whatever editor you are comfortable with. Learning a new language with an editor getting in your way is pretty hard.
Outside emacs, I agree with swannodette. Enclojure (NetBeans) has the most complete support for Clojure.
Development by nullstyle on that stopped in 2008. Clojure wasn't even 1.0 at the time. However looking here, http://github.com/nullstyle/clojure-tmbundle/network, shows that development is alive and kicking, hopefully one of these becomes the new official release.
Do you mind showing us how? I googled everywhere and only came up with a highlight-parentheses minor mode hack which only highlights the parentheses at the cursor.
If you're interested in taking things in the opposite direction, try reducing the prominence of parentheses via ParenFace (http://www.emacswiki.org/emacs-en/ParenFace). I use a very light gray face for parentheses, which is barely visible on a white background.
seems to me like the best solution so far. It only applies "rainbow parens" to the parentheses and parents parentheses of the s-expressions at the cursor.
I was wondering, and please forgive my ignorance, how do you debug with vi(m) or emacs? They are just text editors, right? Or am I missing something here...
Vim and emacs are just text editors in the same sense that visual studio, eclipse, netbeans and so forth are just text editors.
Offhand, the only feature I can think of that eclipse has that vim doesn't is the ability to display images and graphs - all the normal editing features (auto completion, code folding, syntax highlighting, integrated debugger, file browser, plugin system, remote editing, integrated repl, multiple editor buffers, compile&run function, etc etc) can be enabled pretty easily. Also, you can run vim and emacs over ssh - cant do that with eclipse or visual studio :)
Really, vim and emacs are full blown IDEs with all the features you'd expect from a modern IDE - except it doesn't use a fancy GUI.
I really hope that a real shell gets implemented inside vim at some point, it's almost enough to make one switch to Emacs.