I don't want to use a package manager with Emacs.

Should I launch a REPL outside of Emacs, then connect to it? Using the CLI 
tools (i.e., from the command line: clojure -J-Dclojure.server.repl="{:port 
5555 :accept clojure.core.server/repl}")?

Can I launch a REPL from within Emacs?

I've been using inf-clojure and clojure-mode with the following elisp in my 
.emacs:

(add-to-list 'load-path "~/.emacs.d/site-lisp/third-party/clojure-mode/")
(require 'clojure-mode)
(add-to-list 'load-path "~/.emacs.d/site-lisp/third-party/inf-clojure/")
(load-file "~/.emacs.d/site-lisp/third-party/inf-clojure/inf-clojure.el")
(add-hook 'clojure-mode-hook #'inf-clojure-minor-mode)
(setf inf-clojure-lein-cmd "lein run -m clojure.main")

and C-c C-z to start a REPL, but I get noise in the REPL, including 
repeated prompts, and (seemingly) random linebreaks in large output.

What's the state of the art for a simple, practical Emacs setup for Clojure?

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to