Created
June 12, 2012 19:42
-
-
Save rhysd/2919681 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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