mirror of
https://github.com/correl/melpa.git
synced 2024-12-22 11:08:54 +00:00
Note instructions for using melpa-stable in getting-started.html
Closes #1914
This commit is contained in:
parent
2667829dfc
commit
9b3d1ff54d
1 changed files with 11 additions and 1 deletions
|
@ -2,12 +2,22 @@
|
|||
<section>
|
||||
<a name="installing"></a>
|
||||
<h2>Installing</h2>
|
||||
<p>To add the repository put this before the call to <code>package-initialize</code> in your <code>init.el</code> file.</p>
|
||||
<p>
|
||||
To add the snapshot package repository put this before the
|
||||
call to <code>package-initialize</code> in
|
||||
your <code>init.el</code> file.
|
||||
</p>
|
||||
|
||||
<pre><code>(require 'package)
|
||||
(add-to-list 'package-archives
|
||||
'("melpa" . "http://melpa.milkbox.net/packages/") t)</code></pre>
|
||||
|
||||
<p>or to add the stable package repository, use this snippet:</p>
|
||||
|
||||
<pre><code>(require 'package)
|
||||
(add-to-list 'package-archives
|
||||
'("melpa-stable" . "http://melpa-stable.milkbox.net/packages/") t)</code></pre>
|
||||
|
||||
<p>In Emacs < 24, you'll also need to explicitly include the GNU
|
||||
ELPA archive, which provides important compatibility libraries like <code>cl-lib</code>:</p>
|
||||
<pre><code>(when (< emacs-major-version 24)
|
||||
|
|
Loading…
Reference in a new issue