From 0077bbf0fc25afdf3bbe73ead2e85518fc61fa67 Mon Sep 17 00:00:00 2001 From: Micah Chalmer Date: Mon, 11 May 2015 23:51:42 -0400 Subject: Fix package.el URL Fixes #48 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6823f8b..5e904ea 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Then do this to load the package listing: * M-x package-refresh-contents If you use a version of Emacs prior to 24 that doesn't include -`package.el`, you can get it from [here](http://bit.ly/pkg-el23). +`package.el`, you can get it from [here](http://git.savannah.gnu.org/gitweb/?p=emacs.git;a=blob_plain;hb=ba08b24186711eaeb3748f3d1f23e2c2d9ed0d09;f=lisp/emacs-lisp/package.el). If you have an older ELPA `package.el` installed from tromey.com, you should upgrade in order to support installation from multiple sources. -- cgit v1.2.3 From e16c37c7fbd13d38f465d70fa3af619d2f3d5c88 Mon Sep 17 00:00:00 2001 From: Micah Chalmer Date: Mon, 11 May 2015 23:54:25 -0400 Subject: Remove Marmalade from the README --- README.md | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 5e904ea..4b42c64 100644 --- a/README.md +++ b/README.md @@ -19,24 +19,13 @@ To install manually, check out this repository and add this to your This associates `rust-mode` with `.rs` files. To enable it explicitly, do M-x rust-mode. -### `package.el` installation via Marmalade or MELPA +### `package.el` installation via MELPA It can be more convenient to use Emacs's package manager to handle installation for you if you use many elisp libraries. If you have -`package.el` but haven't added Marmalade or MELPA, the community +`package.el` but haven't added MELPA, the community package source, yet, add this to `~/.emacs.d/init.el`: -Using Marmalade: - -```lisp -(require 'package) -(add-to-list 'package-archives - '("marmalade" . "http://marmalade-repo.org/packages/")) -(package-initialize) -``` - -Using MELPA: - ```lisp (require 'package) (add-to-list 'package-archives -- cgit v1.2.3