use this script to download everything you need for clojure development on emacs (aquamacs)
git clone https://github.com/technomancy/clojure-mode.git wget -P framemove http://www.emacswiki.org/emacs/download/framemove.el wget -P paredit http://mumble.net/~campbell/emacs/paredit.el wget --no-check-certificate https://github.com/downloads/magit/magit/magit-1.0.0.tar.gz mkdir magit tar --strip-components=1 --directory=magit -xzf magit-1.0.0.tar.gz wget http://download.savannah.gnu.org/releases/color-theme/color-theme-6.6.0.tar.gz mkdir color-theme tar --strip-components=1 --directory=color-theme -xzf color- theme-6.6.0.tar.gz my init.el: ;; clojure-mode (add-to-list 'load-path "~/.emacs.d/clojure-mode") (require 'clojure-mode) ;; paredit (add-to-list 'load-path "~/.emacs.d/paredit") (require 'paredit) ;; color theme (add-to-list 'load-path "~/.emacs.d/color-theme") (require 'color-theme) (eval-after-load "color-theme" '(progn (color-theme-initialize))) ; windmove and framemove (add-to-list 'load-path "~/.emacs.d/framemove") (require 'framemove) (windmove-default-keybindings) (setq framemove-hook-into-windmove t) ;; customizations (menu-bar-mode -1) (show-paren-mode t) (if (boundp 'tool-bar-mode) (tool-bar-mode -1)) (if (boundp 'scroll-bar-mode) (scroll-bar-mode -1)) ;; color profiles (defun color-dark () (interactive) (global-hl-line-mode 1) (color-theme-deep-blue) (set-face-foreground 'minibuffer-prompt "#9df0f6") (set-face-background 'hl-line "#203e5e")) ;; shell fix (autoload 'ansi-color-for-comint-mode-on "ansi-color" nil t) (add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on) -- 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