浏览代码

add package.el reps

pull/1/head
10sr 12 年前
父节点
当前提交
f18cb9fd30
共有 1 个文件被更改,包括 6 次插入3 次删除
  1. +6
    -3
      emacs.el

+ 6
- 3
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))


正在加载...
取消
保存