Skip to content

Commit e6752b4

Browse files
committed
Add mini config
1 parent 692ee17 commit e6752b4

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

test/mini.emacs.d/init.el

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

0 commit comments

Comments
 (0)