File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ ; ;; init.el --- Load the full configuration -*- lexical-binding : t -*-
2+ ; ;; Commentary:
3+
4+ ; ; Author: Shen, Jen-Chieh <[email protected] >5+ ; ; URL: https://github.com/emacs-eask/eask
6+
7+ (setq package-archives
8+ '((" gnu" . " http://elpa.gnu.org/packages/" )
9+ (" nongnu" . " http://elpa.nongnu.org/nongnu/" )
10+ (" melpa" . " http://melpa.org/packages/" )
11+ (" jcs-elpa" . " https://jcs-emacs.github.io/jcs-elpa/packages/" ))
12+ package-archive-priorities
13+ '((" gnu" . 0 )
14+ (" nongnu" . 0 )
15+ (" melpa" . 5 )
16+ (" jcs-elpa" . 10 )))
17+
18+ (setq package-enable-at-startup nil ; To avoid initializing twice
19+ package-check-signature nil )
20+
21+ (require 'package )
22+
23+ ; ; Local Variables:
24+ ; ; coding: utf-8
25+ ; ; no-byte-compile: t
26+ ; ; End:
27+ ; ;; init.el ends here
You can’t perform that action at this time.
0 commit comments