elpa

Emacs (Cocoa Emacs) vs Aquamacs for running Clojure on Mac OS X

£可爱£侵袭症+ 提交于 2019-11-27 18:52:30
I used Aquamacs so far, and I need to install and run Clojure using SLIME . I googled to get some way to use Clojure on SLIME of Aquamacs, but without success. Questions Is it possible to install Clojure on Aquamacs? Or, can you guess why Clojure on Aquamacs doesn't work? Is it normal that Emacs and Aquamacs can't share the same ELPA ? Is it possible to use ELPA to install Conjure on Emacs/Aquamacs? I was told that one can use 'lein swank' to run as a server, do you know how to do that? Sequences that I tried (and half succeeded) I tried with Mac OS X Emacs , and by following the steps I could

Emacs behind HTTP proxy

情到浓时终转凉″ 提交于 2019-11-27 10:37:01
Emacs is able to access the Internet with packages such as url.el or the W3 web browser . Also, the Emacs Lisp Package Archive is heavily dependent on package url.el. Now, how do I configure Emacs to use my HTTP proxy to connect to the Internet in general? Bonus points for any help with ELPA behind a proxy. Yes, I've had problems with HTTP proxies before . For w3m, this setting has worked for me: (setq url-proxy-services '(("no_proxy" . "work\\.com") ("http" . "proxy.work.com:911"))) I've got authorization working by: (setq url-proxy-services '(("no_proxy" . "^\\(localhost\\|10\\..*\\|192\\

Updating packages in Emacs

假如想象 提交于 2019-11-27 04:56:20
问题 I have the following setup for packages (not sure if there is a better recommended one): (require 'package) (setq package-archives '(("ELPA" . "http://tromey.com/elpa/") ("gnu" . "http://elpa.gnu.org/packages/") ("marmalade" . "http://marmalade-repo.org/packages/"))) ; Apparently needed for the package auto-complete (why?) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t) (package-initialize) (setq url-http-attempt-keepalives nil) I have three questions

Emacs behind HTTP proxy

↘锁芯ラ 提交于 2019-11-26 15:14:36
问题 Emacs is able to access the Internet with packages such as url.el or the W3 web browser. Also, the Emacs Lisp Package Archive is heavily dependent on package url.el. Now, how do I configure Emacs to use my HTTP proxy to connect to the Internet in general? Bonus points for any help with ELPA behind a proxy. Yes, I've had problems with HTTP proxies before. 回答1: For w3m, this setting has worked for me: (setq url-proxy-services '(("no_proxy" . "work\\.com") ("http" . "proxy.work.com:911"))) 回答2: