Skip to content

Instantly share code, notes, and snippets.

@rhysd
Created June 12, 2012 19:42
Show Gist options
  • Save rhysd/2919681 to your computer and use it in GitHub Desktop.
Save rhysd/2919681 to your computer and use it in GitHub Desktop.
# path を通す
(setq load-path (cons "~/.emacs.d/site-lisp" load-path))
(setq load-path (cons "~/.emacs.d/site-lisp/melpa" load-path))
# パッケージ管理を使うための初期化
(require 'package)
; Add package-archives
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
; Initialize
(package-initialize)
# melpa リポジトリの追加
; melpa.el
(require 'melpa)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment