emacs:emacs_24.3_using_melpa

文書の過去の版を表示しています。


Emacs 24.3でMELPAを使う

Emacsを起動しscratchバッファで以下の式を評価(最後の行でC-jを押す)

尚、この式のオリジナルはhttps://raw.github.com/milkypostman/melpa/master/melpa.elに記載されている。

(progn
  (switch-to-buffer
   (url-retrieve-synchronously
    "https://raw.github.com/milkypostman/melpa/master/melpa.el"))
  (package-install-from-buffer  (package-buffer-info) 'single))

init.elに追加

(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
(package-initialize)

M-x list-packages でパッケージ一覧の更新と一覧表示

M-x list-packages で一覧表示

  • emacs/emacs_24.3_using_melpa.1386814493.txt.gz
  • 最終更新: 2013-12-12 11:14
  • by Decomo