vote up 13 vote down star
2

I am starting to learn the Clojure programming language. Are there any recommendations for Clojure editors/IDEs on OS X?

Update 2009-9-23: The clojure space has changed tremendously since I originally posted this question. Many of the links below, especially those that refer to clojure-mode with emacs, are out-of-date. The best clojure IDE I found was the enclojure Netbeans plugin which was recently released (2009-08-25).

flag

63% accept rate

13 Answers

vote up 8 vote down check

You can try NetBeans with Enclojure.

link|flag
Played around with Enclojure and it's a decent environment I really like it. – Brian Gianforcaro Nov 7 '08 at 4:38
1  
They need to get windows support. – Rayne Jan 5 at 9:08
vote up 1 vote down

TextMate is a great editor and has a Lisp bundle, which will suffice for Clojure (there's also an in-progress bundle available here). I've always used TextMate + the Lisp bundle for writing Clojure code.

link|flag
vote up 6 vote down

Rich Hickey uses Aquamacs in all of his demos. He has commented about this, saying that he switched to it after someone created a Clojure mode for Emacs. I have also created a Clojure mode for jEdit.

At the moment, tool support for Clojure is pretty limited. I think you're either stuck with some Emacs variant or jEdit.

link|flag
vote up 2 vote down

Emacs with Slime may be a good choice. See this article that explains a setup.

link|flag
vote up 13 vote down

For setting up Aquamacs, Slime and Clojure, there's a screencast on lispcast.com:

http://www.lispcast.com/drupal/node/79

Edit: That's a nice alternate screencast you found Jman. I've added it to my answer so it's a bit more comprehensive.

link|flag
And the best thing about Aquamacs/Emacs is, once you get past the first couple of weeks of learning a new editor, you'll have gained a power tool you can use for just about anything. – Matt Curtis Nov 3 '08 at 11:00
vote up 1 vote down

I dug around, and found this link to be very useful as well:

http://paulbarry.com/articles/2008/07/02/getting-started-with-clojure-and-aquamacs

link|flag
vote up 1 vote down

I'm using vim for clojure and enjoying it. I installed the vim clojure plugin mentioned in the wiki and also followed the instructions there for making the REPL more user friendly using rlwrap.

link|flag
vote up 4 vote down

If you go the emacs route, I highly recommend using clojure-paredit. Paredit takes some getting used to, but it really reinforces the "code is data" notion.

link|flag
vote up 1 vote down

Bill Clementson has updated his setup.

link|flag
vote up 3 vote down

Emacs Carbon with SLIME and clojure-mode works like a charm. I tried Aquamacs before and it feels too different from the command line emacs for me. I really don't like Terminal.app and after months fighting against it I decided to migrate to Carbon.

link|flag
vote up 5 vote down

Emacs+SLIME is going to be the most productive if you are going to be spending your time editing Lisp code and not doing much Java.

The latest clojure-mode for Emacs can automatically download, install, and configure Clojure, SLIME, and the slime adapter for Clojure all in a single command:

http://github.com/technomancy/clojure-mode

Paredit is also a must-have since it makes it almost difficult to insert invalid s-expressions. It takes a bit of getting used to, but it is emphatically worth it.

link|flag
vote up 2 vote down

One of the "big 3" Java development IDEs is IntelliJ IDEA. It used to get less market share because it's not free as in beer. JetBrains is now providing a Community Edition of IntelliJ IDEA . I'm not a regular Mac user myself, but the OS X 'I use this' folks say it runs there too.

IDEA has a plugin called La Clojure, available directly from the plugin manager under "Settings," that makes Clojure development pleasant and productive.

Previously, I tried

but anticipate staying with IDEA and La Clojure

link|flag
+1. Have loved IntelliJ IDEA for ever. Clojure support is great. – z5h Nov 16 at 3:33
vote up 0 vote down

You may also try IntellliJ IDEA with La Clojure plugin.

link|flag

Your Answer

Get an OpenID
or

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