From f18cb9fd30bcbba0885dd3927ecd4d21370dfbdd Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Tue, 12 Jun 2012 23:04:37 +0900 Subject: [PATCH] add package.el reps --- emacs.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/emacs.el b/emacs.el index 8cf5763..4b34a82 100644 --- a/emacs.el +++ b/emacs.el @@ -519,9 +519,11 @@ Return nil if library unfound and failed to download, otherwise the path where t ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; package -'(setq package-archives '(("ELPA" . "http://tromey.com/elpa/") - ("gnu" . "http://elpa.gnu.org/packages/") - ("marmalade" . "http://marmalade-repo.org/packages/"))) +(when (require 'package nil t) + (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t) + (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/")) + (add-to-list 'package-archives '("ELPA" . "http://tromey.com/elpa/")) + (package-initialize)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; some modes and hooks @@ -548,6 +550,7 @@ Return nil if library unfound and failed to download, otherwise the path where t (and (not x-select-enable-clipboard) (getenv "DISPLAY") (executable-find "xclip") + ;; (< emacs-major-version 24) (dllib-if-unfound "http://www.emacswiki.org/emacs/download/xclip.el" t) (require 'xclip nil t) (turn-on-xclip))